Changeset 29691 in vbox for trunk/src/VBox/HostDrivers/VBoxNetFlt/VBoxNetFltInternal.h
- Timestamp:
- May 20, 2010 12:38:20 PM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/VBoxNetFltInternal.h
r29662 r29691 178 178 * @{ */ 179 179 # ifdef VBOX_WITH_NETFLT_CROSSBOW 180 /** The link Id of the VNIC */ 181 datalink_id_t VNICLinkId; 182 /** Instance number of VNIC */ 180 /** Whether the underlying interface is a VNIC or not. */ 181 bool fIsVNIC; 182 /** Handle to list of created VNICs. */ 183 list_t hVNICs; 184 /** Instance number while creating VNICs. */ 183 185 uint16_t uInstance; 184 /** Whether we created the VNIC or not */ 185 bool fCreatedVNIC; 186 /** The lower MAC handle */ 186 /** The lower MAC handle. Valid only if this is a VNIC. */ 187 187 mac_handle_t hInterface; 188 /** The client MAC handle */ 188 /** The link Id of this interface. Valid only if this is a VNIC. */ 189 datalink_id_t hLinkId; 190 /** The client MAC handle. Valid only if this is a VNIC. */ 189 191 mac_client_handle_t hClient; 190 /** The unicast address handle */192 /** The unicast address handle. Valid only if this is a VNIC. */ 191 193 mac_unicast_handle_t hUnicast; 192 /** The promiscuous handle */194 /** The promiscuous handle. Valid only if this is a VNIC. */ 193 195 mac_promisc_handle_t hPromiscuous; 194 /** The MAC address of the interface*/196 /** The MAC address of the host interface. */ 195 197 RTMAC MacAddr; 196 198 # else
Note:
See TracChangeset
for help on using the changeset viewer.