Changeset 91416 in vbox for trunk/include/VBox
- Timestamp:
- Sep 28, 2021 6:15:49 AM (3 years ago)
- svn:sync-xref-src-repo-rev:
- 147096
- Location:
- trunk/include/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/log.h
r91396 r91416 255 255 /** VBox HDD container media driver group. */ 256 256 LOG_GROUP_DRV_VD, 257 /** The VMNET networking driver group. */ 258 LOG_GROUP_DRV_VMNET, 257 259 /** VRDE audio driver group. */ 258 260 LOG_GROUP_DRV_VRDE_AUDIO, … … 499 501 /** Main group, IHostNetworkInterface. */ 500 502 LOG_GROUP_MAIN_HOSTNETWORKINTERFACE, 503 /** Main group, IHostOnlyNetwork. */ 504 LOG_GROUP_MAIN_HOSTONLYNETWORK, 501 505 /** Main group, IHostUpdate. */ 502 506 LOG_GROUP_MAIN_HOSTUPDATE, … … 900 904 "DRV_VBOXHDD", \ 901 905 "DRV_VD", \ 906 "DRV_VMNET", \ 902 907 "DRV_VRDE_AUDIO", \ 903 908 "DRV_VSWITCH", \ … … 1022 1027 "MAIN_HOSTDRIVEPARTITION", \ 1023 1028 "MAIN_HOSTNETWORKINTERFACE", \ 1029 "MAIN_HOSTONLYNETWORK", \ 1024 1030 "MAIN_HOSTUPDATE", \ 1025 1031 "MAIN_HOSTUSBDEVICE", \ -
trunk/include/VBox/settings.h
r91326 r91416 436 436 typedef std::list<NATNetwork> NATNetworksList; 437 437 438 #ifdef VBOX_WITH_VMNET 439 /** 440 * HostOnly Networking settings. 441 */ 442 struct HostOnlyNetwork 443 { 444 HostOnlyNetwork(); 445 446 com::Guid uuid; 447 com::Utf8Str strNetworkName; 448 com::Utf8Str strNetworkMask; 449 com::Utf8Str strIPLower; 450 com::Utf8Str strIPUpper; 451 bool fEnabled; 452 }; 453 454 typedef std::list<HostOnlyNetwork> HostOnlyNetworksList; 455 #endif /* VBOX_WITH_VMNET */ 456 438 457 #ifdef VBOX_WITH_CLOUD_NET 439 458 /** … … 462 481 void readMachineRegistry(const xml::ElementNode &elmMachineRegistry); 463 482 void readNATNetworks(const xml::ElementNode &elmNATNetworks); 483 #ifdef VBOX_WITH_VMNET 484 void readHostOnlyNetworks(const xml::ElementNode &elmHostOnlyNetworks); 485 #endif /* VBOX_WITH_VMNET */ 464 486 #ifdef VBOX_WITH_CLOUD_NET 465 487 void readCloudNetworks(const xml::ElementNode &elmCloudNetworks); … … 474 496 DHCPServersList llDhcpServers; 475 497 NATNetworksList llNATNetworks; 498 #ifdef VBOX_WITH_VMNET 499 HostOnlyNetworksList llHostOnlyNetworks; 500 #endif /* VBOX_WITH_VMNET */ 476 501 #ifdef VBOX_WITH_CLOUD_NET 477 502 CloudNetworksList llCloudNetworks; … … 802 827 com::Utf8Str strBridgedName; 803 828 com::Utf8Str strHostOnlyName; 829 #ifdef VBOX_WITH_VMNET 830 com::Utf8Str strHostOnlyNetworkName; 831 #endif /* VBOX_WITH_VMNET */ 804 832 com::Utf8Str strInternalNetworkName; 805 833 com::Utf8Str strGenericDriver;
Note:
See TracChangeset
for help on using the changeset viewer.