- Timestamp:
- May 20, 2010 4:49:16 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 61882
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Devices/Network/SrvIntNetR0.cpp
r29669 r29707 2517 2517 u.SG.aSegs[1].cb = (uint32_t)cbSegPayload; 2518 2518 2519 int rc = pThis->pIfPort->pfnXmit(pThis->pIfPort, pIfSender , &u.SG, fDst);2519 int rc = pThis->pIfPort->pfnXmit(pThis->pIfPort, pIfSender->pvIfData, &u.SG, fDst); 2520 2520 if (RT_FAILURE(rc)) 2521 2521 return rc; … … 2640 2640 if ( pSG->GsoCtx.u8Type == PDMNETWORKGSOTYPE_INVALID 2641 2641 || intnetR0TrunkIfCanHandleGsoFrame(pThis, pSG, fDst) ) 2642 rc = pThis->pIfPort->pfnXmit(pThis->pIfPort, pIfSender , pSG, fDst);2642 rc = pThis->pIfPort->pfnXmit(pThis->pIfPort, pIfSender->pvIfData, pSG, fDst); 2643 2643 else 2644 2644 rc = intnetR0TrunkIfSendGsoFallback(pThis, pIfSender, pSG, fDst);
Note:
See TracChangeset
for help on using the changeset viewer.