Changeset 28711 in vbox for trunk/src/VBox/VMM/VMMR0
- Timestamp:
- Apr 25, 2010 7:01:24 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 60583
- Location:
- trunk/src/VBox/VMM/VMMR0
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/VMMR0/VMMR0.cpp
r28706 r28711 999 999 return IntNetR0IfCloseReq(pSession, (PINTNETIFCLOSEREQ)pReqHdr); 1000 1000 1001 case VMMR0_DO_INTNET_IF_GET_ RING3_BUFFER:1002 if (u64Arg || !pReqHdr || !vmmR0IsValidSession(pVM, ((PINTNETIFGET RING3BUFFERREQ)pReqHdr)->pSession, pSession) || idCpu != NIL_VMCPUID)1003 return VERR_INVALID_PARAMETER; 1004 return IntNetR0IfGet Ring3BufferReq(pSession, (PINTNETIFGETRING3BUFFERREQ)pReqHdr);1001 case VMMR0_DO_INTNET_IF_GET_BUFFER_PTRS: 1002 if (u64Arg || !pReqHdr || !vmmR0IsValidSession(pVM, ((PINTNETIFGETBUFFERPTRSREQ)pReqHdr)->pSession, pSession) || idCpu != NIL_VMCPUID) 1003 return VERR_INVALID_PARAMETER; 1004 return IntNetR0IfGetBufferPtrsReq(pSession, (PINTNETIFGETBUFFERPTRSREQ)pReqHdr); 1005 1005 1006 1006 case VMMR0_DO_INTNET_IF_SET_PROMISCUOUS_MODE: -
trunk/src/VBox/VMM/VMMR0/VMMR0.def
r28439 r28711 67 67 VMSetErrorV 68 68 69 ; Internal Networking 70 IntNetR0Open 71 IntNetR0IfClose 72 IntNetR0IfGetRing0Buffer 73 IntNetR0IfGetRing3Buffer 74 IntNetR0IfSetPromiscuousMode 75 IntNetR0IfSetMacAddress 76 IntNetR0IfSetActive 77 IntNetR0IfSend 78 IntNetR0IfWait 79 69 80 ; runtime 70 81 RTAssertMsg1Weak
Note:
See TracChangeset
for help on using the changeset viewer.