Changeset 28449 in vbox
- Timestamp:
- Apr 19, 2010 9:52:59 AM (15 years ago)
- 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 1 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 * 2 25 * QEMU BOOTP/DHCP server 3 26 * -
Property svn:keywords
set to
-
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 1 22 /* bootp/dhcp defines */ 2 23 -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1988, 1992, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
trunk/src/VBox/Devices/Network/slirp/counters.h
r23462 r28449 9 9 10 10 /* 11 * Copyright (C) 2007-20 09Sun Microsystems, Inc.11 * Copyright (C) 2007-2010 Sun Microsystems, Inc. 12 12 * 13 13 * 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 1 23 #define CTL_CMD 0 2 24 #define CTL_EXEC 1 -
Property svn:keywords
set to
-
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 1 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 /* 24 * This code is based on: 25 * 2 26 * Copyright (c) 1995 Danny Gasparovski. 3 27 * Portions copyright (c) 2000 Kelly Price. -
Property svn:keywords
set to
-
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 1 22 /* 2 23 * Copyright (c) 1995 Danny Gasparovski. -
Property svn:keywords
set to
-
trunk/src/VBox/Devices/Network/slirp/ext.h
r25352 r28449 1 1 /** $Id$ */ 2 2 /** @file 3 * some externals helpers3 * NAT - some externals helpers 4 4 */ 5 5 -
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 1 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 * 2 25 * Copyright (c) 1982, 1986, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1995 Danny Gasparovski. 3 26 * -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1995 Danny Gasparovski. 3 26 * -
Property svn:keywords
set to
-
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 * 2 25 * Copyright (c) 1982, 1986, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1982, 1986, 1988, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 * 2 25 * Copyright (c) 1982, 1986, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1982, 1986, 1988, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1982, 1986, 1988, 1990, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 1 22 #ifndef _LIBSLIRP_H 2 23 #define _LIBSLIRP_H -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1995 Danny Gasparovski. 3 26 * -
Property svn:keywords
set to
-
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 * 2 25 * Copyright (c) 1995 Danny Gasparovski 3 26 * -
Property svn:keywords
set to
-
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 * 2 25 * Copyright (c) 1982, 1986, 1988, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1995 Danny Gasparovski. 3 26 * -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1995 Danny Gasparovski. 3 26 * -
Property svn:keywords
set to
-
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 * 2 25 * Copyright (c) 1991, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 * 2 25 * Copyright (c) 1995 Danny Gasparovski. 3 26 * -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1995 Danny Gasparovski. 3 26 * -
Property svn:keywords
set to
-
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 1 48 #include "slirp.h" 2 49 #ifdef RT_OS_OS2 -
Property svn:keywords
set to
-
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 1 22 #ifndef __COMMON_H__ 2 23 #define __COMMON_H__ -
Property svn:keywords
set to
-
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 1 22 /* 2 23 * User definable configuration options -
Property svn:keywords
set to
-
trunk/src/VBox/Devices/Network/slirp/slirp_state.h
-
Property svn:keywords
set to
Author Date Id Revision
r28397 r28449 1 1 /** @file 2 * NAT state/configuration.2 * NAT - slirp state/configuration. 3 3 */ 4 4 5 5 /* 6 * Copyright (C) 2006-20 07Sun Microsystems, Inc.6 * Copyright (C) 2006-2010 Sun Microsystems, Inc. 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1995 Danny Gasparovski. 3 26 * -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1995 Danny Gasparovski. 3 26 * -
Property svn:keywords
set to
-
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 * 2 25 * Copyright (c) 1982, 1986, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1982, 1986, 1988, 1990, 1993, 1994 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1982, 1986, 1988, 1990, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 * 2 25 * Copyright (c) 1982, 1986, 1988, 1990, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 * 2 25 * Copyright (c) 1982, 1986, 1988, 1990, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1982, 1986, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 * 2 25 * Copyright (c) 1982, 1986, 1993, 1994 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 1 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 * 2 25 * Copyright (c) 1982, 1986, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
trunk/src/VBox/Devices/Network/slirp/tftp.c
r28443 r28449 1 /* $Id$ */ 2 /** @file 3 * NAT - TFTP server. 4 */ 5 1 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 * 2 25 * tftp.c - a simple, read-only tftp server for qemu 3 26 * -
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 1 22 /* tftp defines */ 2 23 -
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 1 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 * 2 25 * Copyright (c) 1982, 1986, 1988, 1990, 1993 3 26 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
-
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 1 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 /* 24 * This code is based on: 25 * 2 26 * Copyright (c) 1982, 1986, 1993 3 27 * The Regents of the University of California. All rights reserved. -
Property svn:keywords
set to
Note:
See TracChangeset
for help on using the changeset viewer.