Changeset 13768 in vbox
- Timestamp:
- Nov 3, 2008 6:44:28 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostDrivers/VBoxNetFlt/VBoxNetFltInternal.h
r13758 r13768 176 176 /** Mutex protection used for loopback. */ 177 177 RTSEMFASTMUTEX hFastMtx; 178 /** @} */ 178 179 # elif defined(RT_OS_WINDOWS) 180 /** @name Windows instance data. 181 * @{ */ 179 182 # ifdef VBOX_NETFLT_ONDEMAND_BIND 180 /** filter driver device context*/183 /** Filter driver device context. */ 181 184 ADAPT IfAdaptor; 182 185 # else 183 /** pointer to the filter driver device context*/186 /** Pointer to the filter driver device context. */ 184 187 PADAPT volatile pIfAdaptor; 185 188 # endif 186 /** The MAC address of the interface. Caching MAC for performance reasons */189 /** The MAC address of the interface. Caching MAC for performance reasons. */ 187 190 RTMAC Mac; 191 /** @} */ 188 192 # else 189 193 # error "PORTME" … … 193 197 /** Padding. */ 194 198 #if defined(RT_OS_WINDOWS) && defined(VBOX_NETFLT_ONDEMAND_BIND) 195 /* windows AND protocol-based approach :196 * we include the ADAPT into the VBOXNETFLTINS,197 * and we do not feet into the 64 bytes padding,198 * make it bigger */199 199 uint8_t abPadding[192]; 200 200 #else
Note:
See TracChangeset
for help on using the changeset viewer.