Changeset 1186 in vbox for trunk/src/VBox/Devices
- Timestamp:
- Mar 4, 2007 8:00:36 PM (18 years ago)
- svn:sync-xref-src-repo-rev:
- 19103
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DrvNAT.cpp
r1039 r1186 66 66 #define PDMINETWORKCONNECTOR_2_DRVNAT(pInterface) ( (PDRVNAT)((uintptr_t)pInterface - RT_OFFSETOF(DRVNAT, INetworkConnector)) ) 67 67 68 68 69 /******************************************************************************* 69 70 * Global Variables * … … 220 221 221 222 return pData->pPort->pfnCanReceive(pData->pPort); 222 223 return 0;224 223 } 225 224 … … 399 398 */ 400 399 pData->pDrvIns = pDrvIns; 400 pData->pNATState = NULL; 401 401 /* IBase */ 402 402 pDrvIns->IBase.pfnQueryInterface = drvNATQueryInterface; … … 406 406 pData->INetworkConnector.pfnNotifyLinkChanged = drvNATNotifyLinkChanged; 407 407 pData->INetworkConnector.pfnNotifyCanReceive = drvNATNotifyCanReceive; 408 409 pData->pNATState = NULL;410 408 411 409 /*
Note:
See TracChangeset
for help on using the changeset viewer.