Changeset 50322 in vbox
- Timestamp:
- Feb 5, 2014 9:19:01 AM (11 years ago)
- svn:sync-xref-src-repo-rev:
- 92044
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxNetSend.h
r50321 r50322 58 58 * thread. We submit dummy as if it was coming from this interface. 59 59 */ 60 inline int V boxNetSendDummy(ifnet_t pIfNet)60 inline int VBoxNetSendDummy(ifnet_t pIfNet) 61 61 { 62 62 int rc = 0; -
trunk/src/VBox/HostDrivers/VBoxNetAdp/darwin/VBoxNetAdp-darwin.cpp
r50321 r50322 297 297 { 298 298 ifnet_set_mtu(pThis->u.s.pIface, VBOXNETADP_MTU); 299 V boxNetSendDummy(pThis->u.s.pIface);299 VBoxNetSendDummy(pThis->u.s.pIface); 300 300 return VINF_SUCCESS; 301 301 } -
trunk/src/VBox/HostDrivers/VBoxNetFlt/darwin/VBoxNetFlt-darwin.cpp
r50321 r50322 890 890 Assert(pvUser); 891 891 ifnet_t pIfNet = (ifnet_t)pvUser; 892 return V boxNetSendDummy(pIfNet);892 return VBoxNetSendDummy(pIfNet); 893 893 } 894 894
Note:
See TracChangeset
for help on using the changeset viewer.