VirtualBox

Changeset 28449 in vbox


Ignore:
Timestamp:
Apr 19, 2010 9:52:59 AM (15 years ago)
Author:
vboxsync
Message:

NAT: slirp file headers

Location:
trunk/src/VBox/Devices/Network/slirp
Files:
43 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/VBox/Devices/Network/slirp/bootp.c

    • Property svn:keywords set to Author Date Id Revision
    r28443 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - BOOTP/DHCP server emulation.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * QEMU BOOTP/DHCP server
    326 *
  • trunk/src/VBox/Devices/Network/slirp/bootp.h

    • Property svn:keywords set to Author Date Id Revision
    r26037 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - BOOTP/DHCP server emulation (declarations/defines).
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
    122/* bootp/dhcp defines */
    223
  • trunk/src/VBox/Devices/Network/slirp/cksum.c

    • Property svn:keywords set to Author Date Id Revision
    r23369 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - IP checksum generation.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1988, 1992, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/counters.h

    r23462 r28449  
    99
    1010/*
    11  * Copyright (C) 2007-2009 Sun Microsystems, Inc.
     11 * Copyright (C) 2007-2010 Sun Microsystems, Inc.
    1212 *
    1313 * This file is part of VirtualBox Open Source Edition (OSE), as
  • trunk/src/VBox/Devices/Network/slirp/ctl.h

    • Property svn:keywords set to Author Date Id Revision
    r21112 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - IP subnet constants.
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22
    123#define CTL_CMD         0
    224#define CTL_EXEC        1
  • trunk/src/VBox/Devices/Network/slirp/debug.c

    • Property svn:keywords set to Author Date Id Revision
    r28440 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - debug helpers.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22
     23/*
     24 * This code is based on:
     25 *
    226 * Copyright (c) 1995 Danny Gasparovski.
    327 * Portions copyright (c) 2000 Kelly Price.
  • trunk/src/VBox/Devices/Network/slirp/debug.h

    • Property svn:keywords set to Author Date Id Revision
    r22873 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - debug helpers (declarations/defines).
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
    122/*
    223 * Copyright (c) 1995 Danny Gasparovski.
  • trunk/src/VBox/Devices/Network/slirp/ext.h

    r25352 r28449  
    11/** $Id$ */
    22/** @file
    3  * some externals helpers
     3 * NAT - some externals helpers
    44 */
    55
  • trunk/src/VBox/Devices/Network/slirp/icmp_var.h

    • Property svn:keywords set to Author Date Id Revision
    r15054 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - ICMP handling (declarations/defines).
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/if.c

    • Property svn:keywords set to Author Date Id Revision
    r23462 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - if_*.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1995 Danny Gasparovski.
    326 *
  • trunk/src/VBox/Devices/Network/slirp/if.h

    • Property svn:keywords set to Author Date Id Revision
    r23369 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - if_*.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1995 Danny Gasparovski.
    326 *
  • trunk/src/VBox/Devices/Network/slirp/ip.h

    • Property svn:keywords set to Author Date Id Revision
    r25822 r28449  
    1 /*
     1/* $Id$ */
     2/** @file
     3 * NAT - IP handling (declarations/defines).
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/ip_icmp.c

    • Property svn:keywords set to Author Date Id Revision
    r28443 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - IP/ICMP handling.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1988, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/ip_icmp.h

    • Property svn:keywords set to Author Date Id Revision
    r20306 r28449  
    1 /*
     1/* $Id$ */
     2/** @file
     3 * NAT - IP/ICMP handling (declarations/defines).
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/ip_input.c

    • Property svn:keywords set to Author Date Id Revision
    r28443 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - IP input.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1988, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/ip_output.c

    • Property svn:keywords set to Author Date Id Revision
    r26404 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - IP output.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1988, 1990, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/libslirp.h

    • Property svn:keywords set to Author Date Id Revision
    r28365 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - slirp interface.
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
    122#ifndef _LIBSLIRP_H
    223#define _LIBSLIRP_H
  • trunk/src/VBox/Devices/Network/slirp/main.h

    • Property svn:keywords set to Author Date Id Revision
    r23462 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - main.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1995 Danny Gasparovski.
    326 *
  • trunk/src/VBox/Devices/Network/slirp/mbuf.c

    • Property svn:keywords set to Author Date Id Revision
    r27797 r28449  
    1 /*
     1/* $Id$ */
     2/** @file
     3 * NAT - mbuf handling.
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1995 Danny Gasparovski
    326 *
  • trunk/src/VBox/Devices/Network/slirp/mbuf.h

    • Property svn:keywords set to Author Date Id Revision
    r26404 r28449  
    1 /*
     1/* $Id$ */
     2/** @file
     3 * NAT - mbuf handling (declarations/defines).
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1988, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/misc.c

    • Property svn:keywords set to Author Date Id Revision
    r28440 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - helpers.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1995 Danny Gasparovski.
    326 *
  • trunk/src/VBox/Devices/Network/slirp/misc.h

    • Property svn:keywords set to Author Date Id Revision
    r28397 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - helpers (declarations/defines).
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1995 Danny Gasparovski.
    326 *
  • trunk/src/VBox/Devices/Network/slirp/queue.h

    • Property svn:keywords set to Author Date Id Revision
    r21292 r28449  
    1 /*-
     1/* $Id$ */
     2/** @file
     3 * NAT - Queue handling.
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1991, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/sbuf.c

    • Property svn:keywords set to Author Date Id Revision
    r28444 r28449  
    1 /*
     1/* $Id$ */
     2/** @file
     3 * NAT - sbuf implemenation.
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1995 Danny Gasparovski.
    326 *
  • trunk/src/VBox/Devices/Network/slirp/sbuf.h

    • Property svn:keywords set to Author Date Id Revision
    r23154 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - sbuf declarations/defines.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1995 Danny Gasparovski.
    326 *
  • trunk/src/VBox/Devices/Network/slirp/slirp.c

    • Property svn:keywords set to Author Date Id Revision
    r28443 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - slirp glue.
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
     25 * libslirp glue
     26 *
     27 * Copyright (c) 2004-2008 Fabrice Bellard
     28 *
     29 * Permission is hereby granted, free of charge, to any person obtaining a copy
     30 * of this software and associated documentation files (the "Software"), to deal
     31 * in the Software without restriction, including without limitation the rights
     32 * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
     33 * copies of the Software, and to permit persons to whom the Software is
     34 * furnished to do so, subject to the following conditions:
     35 *
     36 * The above copyright notice and this permission notice shall be included in
     37 * all copies or substantial portions of the Software.
     38 *
     39 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
     40 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
     41 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
     42 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
     43 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
     44 * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
     45 * THE SOFTWARE.
     46 */
     47
    148#include "slirp.h"
    249#ifdef RT_OS_OS2
  • trunk/src/VBox/Devices/Network/slirp/slirp.h

    • Property svn:keywords set to Author Date Id Revision
    r28434 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - slirp (declarations/defines).
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
    122#ifndef __COMMON_H__
    223#define __COMMON_H__
  • trunk/src/VBox/Devices/Network/slirp/slirp_config.h

    • Property svn:keywords set to Author Date Id Revision
    r20306 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - compile-time configuration.
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
    122/*
    223 * User definable configuration options
  • trunk/src/VBox/Devices/Network/slirp/slirp_state.h

    • Property svn:keywords set to Author Date Id Revision
    r28397 r28449  
    11/** @file
    2  * NAT state/configuration.
     2 * NAT - slirp state/configuration.
    33 */
    44
    55/*
    6  * Copyright (C) 2006-2007 Sun Microsystems, Inc.
     6 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
    77 *
    88 * This file is part of VirtualBox Open Source Edition (OSE), as
  • trunk/src/VBox/Devices/Network/slirp/socket.c

    • Property svn:keywords set to Author Date Id Revision
    r28443 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - socket handling.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1995 Danny Gasparovski.
    326 *
  • trunk/src/VBox/Devices/Network/slirp/socket.h

    • Property svn:keywords set to Author Date Id Revision
    r28023 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - socket handling (declarations/defines).
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1995 Danny Gasparovski.
    326 *
  • trunk/src/VBox/Devices/Network/slirp/tcp.h

    • Property svn:keywords set to Author Date Id Revision
    r23154 r28449  
    1 /*
     1/* $Id$ */
     2/** @file
     3 * NAT - TCP.
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/tcp_input.c

    • Property svn:keywords set to Author Date Id Revision
    r28445 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - TCP input.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1994
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/tcp_output.c

    • Property svn:keywords set to Author Date Id Revision
    r28443 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - TCP output.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1988, 1990, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/tcp_subr.c

    • Property svn:keywords set to Author Date Id Revision
    r28444 r28449  
    1 /*
     1/* $Id$ */
     2/** @file
     3 * NAT - TCP support.
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1988, 1990, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/tcp_timer.c

    • Property svn:keywords set to Author Date Id Revision
    r23369 r28449  
    1 /*
     1/* $Id$ */
     2/** @file
     3 * NAT - TCP timers.
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1988, 1990, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/tcp_timer.h

    • Property svn:keywords set to Author Date Id Revision
    r20306 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - TCP timer (declarations/defines).
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/tcp_var.h

    • Property svn:keywords set to Author Date Id Revision
    r15453 r28449  
    1 /*
     1/* $Id$ */
     2/** @file
     3 * NAT - TCP (declarations).
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1993, 1994
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/tcpip.h

    • Property svn:keywords set to Author Date Id Revision
    r16946 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - TCP/IP (declarations/defines).
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/tftp.c

    r28443 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - TFTP server.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * tftp.c - a simple, read-only tftp server for qemu
    326 *
  • trunk/src/VBox/Devices/Network/slirp/tftp.h

    r14964 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - TFTP server (declarations/defines).
     4 */
     5
     6/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
    122/* tftp defines */
    223
  • trunk/src/VBox/Devices/Network/slirp/udp.c

    • Property svn:keywords set to Author Date Id Revision
    r28445 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - UDP protocol.
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22/*
     23 * This code is based on:
     24 *
    225 * Copyright (c) 1982, 1986, 1988, 1990, 1993
    326 *      The Regents of the University of California.  All rights reserved.
  • trunk/src/VBox/Devices/Network/slirp/udp.h

    • Property svn:keywords set to Author Date Id Revision
    r21004 r28449  
     1/* $Id$ */
     2/** @file
     3 * NAT - UDP protocol (declarations/defines).
     4 */
     5
    16/*
     7 * Copyright (C) 2006-2010 Sun Microsystems, Inc.
     8 *
     9 * This file is part of VirtualBox Open Source Edition (OSE), as
     10 * available from http://www.virtualbox.org. This file is free software;
     11 * you can redistribute it and/or modify it under the terms of the GNU
     12 * General Public License (GPL) as published by the Free Software
     13 * Foundation, in version 2 as it comes in the "COPYING" file of the
     14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
     15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
     16 *
     17 * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa
     18 * Clara, CA 95054 USA or visit http://www.sun.com if you need
     19 * additional information or have any questions.
     20 */
     21
     22
     23/*
     24 * This code is based on:
     25 *
    226 * Copyright (c) 1982, 1986, 1993
    327 *      The Regents of the University of California.  All rights reserved.
Note: See TracChangeset for help on using the changeset viewer.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette