Changeset 63211 in vbox for trunk/src/VBox/Devices/Network
- Timestamp:
- Aug 9, 2016 2:47:23 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109838
- Location:
- trunk/src/VBox/Devices/Network
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/DevINIP.cpp
r62961 r63211 143 143 144 144 145 /********************************************************************************************************************************* 146 * Internal Functions * 147 *********************************************************************************************************************************/ 148 static err_t devINIPOutput(struct netif *netif, struct pbuf *p, struct ip_addr *ipaddr); 149 static err_t devINIPOutputRaw(struct netif *netif, struct pbuf *p); 150 static err_t devINIPInterface(struct netif *netif); 151 152 145 #if 0 /* unused */ 153 146 /** 154 147 * Output a TCP/IP packet on the interface. Uses the generic lwIP ARP … … 171 164 return lrc; 172 165 } 166 #endif 173 167 174 168 /** -
trunk/src/VBox/Devices/Network/DrvDedicatedNic.cpp
r62906 r63211 174 174 175 175 176 #if 0 /* currently unused */ 177 176 178 /* -=-=-=-=- PDMINETWORKUP -=-=-=-=- */ 177 179 … … 391 393 return NULL; 392 394 } 395 396 #endif /* Currently unused */ 393 397 394 398 -
trunk/src/VBox/Devices/Network/DrvVDE.cpp
r62511 r63211 120 120 static DECLCALLBACK(int) drvVDENetworkUp_BeginXmit(PPDMINETWORKUP pInterface, bool fOnWorkerThread) 121 121 { 122 RT_NOREF(fOnWorkerThread); 122 123 PDRVVDE pThis = PDMINETWORKUP_2_DRVVDE(pInterface); 123 124 int rc = RTCritSectTryEnter(&pThis->XmitLock); … … 199 200 static DECLCALLBACK(int) drvVDENetworkUp_SendBuf(PPDMINETWORKUP pInterface, PPDMSCATTERGATHER pSgBuf, bool fOnWorkerThread) 200 201 { 202 RT_NOREF(fOnWorkerThread); 201 203 PDRVVDE pThis = PDMINETWORKUP_2_DRVVDE(pInterface); 202 204 STAM_COUNTER_INC(&pThis->StatPktSent); … … 274 276 static DECLCALLBACK(void) drvVDENetworkUp_SetPromiscuousMode(PPDMINETWORKUP pInterface, bool fPromiscuous) 275 277 { 278 RT_NOREF(pInterface, fPromiscuous); 276 279 LogFlow(("drvVDESetPromiscuousMode: fPromiscuous=%d\n", fPromiscuous)); 277 280 /* nothing to do */ … … 288 291 static DECLCALLBACK(void) drvVDENetworkUp_NotifyLinkChanged(PPDMINETWORKUP pInterface, PDMNETWORKLINKSTATE enmLinkState) 289 292 { 293 RT_NOREF(pInterface, enmLinkState); 290 294 LogFlow(("drvNATNetworkUp_NotifyLinkChanged: enmLinkState=%d\n", enmLinkState)); 291 295 /** @todo take action on link down and up. Stop the polling and such like. */ … … 438 442 static DECLCALLBACK(int) drvVDEAsyncIoWakeup(PPDMDRVINS pDrvIns, PPDMTHREAD pThread) 439 443 { 444 RT_NOREF(pThread); 440 445 PDRVVDE pThis = PDMINS_2_DATA(pDrvIns, PDRVVDE); 441 446 … … 529 534 static DECLCALLBACK(int) drvVDEConstruct(PPDMDRVINS pDrvIns, PCFGMNODE pCfg, uint32_t fFlags) 530 535 { 536 RT_NOREF(fFlags); 537 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns); 531 538 PDRVVDE pThis = PDMINS_2_DATA(pDrvIns, PDRVVDE); 532 PDMDRV_CHECK_VERSIONS_RETURN(pDrvIns);533 539 534 540 /*
Note:
See TracChangeset
for help on using the changeset viewer.