Changeset 37199 in vbox
- Timestamp:
- May 24, 2011 3:17:03 PM (14 years ago)
- Location:
- trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Config.kmk
r37186 r37199 553 553 endif 554 554 endif 555 # Enables the UDP tunnel transport. 556 VBOX_WITH_UDPTUNNEL = 1 555 557 # Enable Virtual Distributed Ethernet or not. 556 558 if1of ($(KBUILD_TARGET), freebsd linux) -
trunk/configure
r37125 r37199 4 4 5 5 # 6 # Copyright (C) 2006-20 09Oracle Corporation6 # Copyright (C) 2006-2011 Oracle Corporation 7 7 # 8 8 # This file is part of VirtualBox Open Source Edition (OSE), as … … 88 88 WITH_OPENGL=1 89 89 WITH_HARDENING=1 90 WITH_UDPTUNNEL=1 90 91 WITH_VDE=0 91 92 WITH_VNC=0 … … 2180 2181 [ "$OS" = "linux" -o "$OS" = "freebsd" ] && echo " --enable-vde enable VDE networking" 2181 2182 cat << EOF 2183 --disable-udptunnel disable UDP tunnel networking 2182 2184 --disable-hardening don't be strict about /dev/vboxdrv access 2183 2185 --build-libxml2 build libxml2 from sources … … 2197 2199 --with-iasl=PATH location of the iasl compiler [$IASL] 2198 2200 --with-mkisofs=PATH location of mkisofs [$MKISOFS] 2201 --with-makeself=PATH location of makeself [$MAKESELF] 2199 2202 EOF 2200 2203 [ "$OS" = "linux" ] && echo " --with-linux=DIR Linux kernel source directory [$LINUX]" … … 2294 2297 MKISOFS=`echo $option | cut -d'=' -f2` 2295 2298 ;; 2299 --with-makeself=*) 2300 MAKESELF=`echo $option | cut -d'=' -f2` 2301 ;; 2296 2302 --target-arch=*) 2297 2303 TARGET_MACHINE=`echo $option | cut -d'=' -f2` … … 2353 2359 --enable-hardening) 2354 2360 WITH_HARDENING=2 2361 ;; 2362 --disable-udptunnel) 2363 WITH_UDPTUNNEL=0 2355 2364 ;; 2356 2365 --enable-vde) … … 2603 2612 cnf_append "VBOX_WITH_WEBSERVICES" "" 2604 2613 fi 2614 fi 2615 2616 # UDPTUNNEL 2617 if [ $WITH_UDPTUNNEL -eq 0 ]; then 2618 cnf_append "VBOX_WITH_UDPTUNNEL" "" 2605 2619 fi 2606 2620 -
trunk/configure.vbs
r34466 r37199 10 10 11 11 ' 12 ' Copyright (C) 2006-20 07Oracle Corporation12 ' Copyright (C) 2006-2011 Oracle Corporation 13 13 ' 14 14 ' This file is part of VirtualBox Open Source Edition (OSE), as … … 752 752 CfgPrint "VBOX_WITH_DEBUGGER_GUI=" 753 753 CfgPrint "VBOX_WITHOUT_COM=1" 754 end if 755 end sub 756 757 758 '' 759 ' No UDPTunnel 760 sub DisableUDPTunnel(strReason) 761 if g_blnDisableUDPTunnel = False then 762 LogPrint "Disabled UDPTunnel network transport: " & strReason 763 g_blnDisableUDPTunnel = True 764 g_strDisableUDPTunnel = strReason 765 CfgPrint "VBOX_WITH_UDPTUNNEL=" 754 766 end if 755 767 end sub … … 2228 2240 Print "Components:" 2229 2241 Print " --disable-COM" 2242 Print " --disable-UDPTunnel" 2230 2243 Print "" 2231 2244 Print "Locations:" … … 2283 2296 strOptMkisofs = "" 2284 2297 blnOptDisableCOM = False 2298 blnOptDisableUDPTunnel = False 2285 2299 for i = 1 to Wscript.Arguments.Count 2286 2300 dim str, strArg, strPath … … 2337 2351 case "--enable-com" 2338 2352 blnOptDisableCOM = False 2353 case "--disable-udptunnel" 2354 blnOptDisableUDPTunnel = True 2339 2355 case "--internal" 2340 2356 g_blnInternalMode = True … … 2376 2392 DisableCOM "--disable-com" 2377 2393 end if 2394 if blnOptDisableUDPTunnel = True then 2395 DisableUDPTunnel "--disable-udptunnel" 2378 2396 CheckSourcePath 2379 2397 CheckForkBuild strOptkBuild -
trunk/include/VBox/log.h
r36848 r37199 4 4 5 5 /* 6 * Copyright (C) 2006-20 07Oracle Corporation6 * Copyright (C) 2006-2011 Oracle Corporation 7 7 * 8 8 * This file is part of VirtualBox Open Source Edition (OSE), as … … 200 200 /** TUN network transport driver group */ 201 201 LOG_GROUP_DRV_TUN, 202 /** UDP tunnet network transport driver group. */ 203 LOG_GROUP_DRV_UDPTUNNEL, 202 204 /** USB Proxy driver group. */ 203 205 LOG_GROUP_DRV_USBPROXY, … … 445 447 "DRV_TRANSPORT_ASYNC", \ 446 448 "DRV_TUN", \ 449 "DRV_UDPTUNNEL", \ 447 450 "DRV_USBPROXY", \ 448 451 "DRV_VBOXHDD", \
Note:
See TracChangeset
for help on using the changeset viewer.