Changeset 91417 in vbox for trunk/src/VBox
- Timestamp:
- Sep 28, 2021 6:54:46 AM (3 years ago)
- Location:
- trunk/src/VBox
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvVMNet.m
r91416 r91417 44 44 #import <vmnet/vmnet.h> 45 45 46 #define VMNET_MAX_HOST_INTERFACE_NAME_LENGTH 16 /* TODO: Are you sure? */47 #define VMNET_MAX_IP_ADDRESS_STRING_LENGTH 4846 #define VMNET_MAX_HOST_INTERFACE_NAME_LENGTH 16 47 #define VMNET_MAX_IP_ADDRESS_STRING_LENGTH 48 48 48 49 49 /* Force release logging for debug builds */ … … 80 80 /** For when we're the leaf driver. */ 81 81 RTCRITSECT XmitLock; 82 /** TODO*/82 /** VMNET interface queue handle. */ 83 83 dispatch_queue_t InterfaceQueue; 84 /** TODO*/84 /** VMNET interface handle. */ 85 85 interface_ref Interface; 86 /** T ODO*/86 /** The unique id for this network. */ 87 87 uuid_t uuid; 88 88 /** The operation mode: bridged or host. */ -
trunk/src/VBox/Main/src-server/HostOnlyNetworkImpl.cpp
r91416 r91417 219 219 HRESULT HostOnlyNetwork::setLowerIP(const com::Utf8Str &aLowerIP) 220 220 { 221 /// @TODO: Validation?222 221 { 223 222 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS); … … 242 241 HRESULT HostOnlyNetwork::setUpperIP(const com::Utf8Str &aUpperIP) 243 242 { 244 /// @TODO: Validation?245 243 { 246 244 AutoWriteLock alock(this COMMA_LOCKVAL_SRC_POS);
Note:
See TracChangeset
for help on using the changeset viewer.