VirtualBox

Changeset 10806 in vbox for trunk/include/VBox


Ignore:
Timestamp:
Jul 22, 2008 11:07:38 AM (17 years ago)
Author:
vboxsync
svn:sync-xref-src-repo-rev:
33584
Message:

intnet: Push the session down to all the INTNETR0* apis.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/include/VBox/intnet.h

    r10761 r10806  
    685685typedef INTNETIFCLOSEREQ *PINTNETIFCLOSEREQ;
    686686
    687 INTNETR0DECL(int) INTNETR0IfCloseReq(PINTNET pIntNet, PINTNETIFCLOSEREQ pReq);
     687INTNETR0DECL(int) INTNETR0IfCloseReq(PINTNET pIntNet, PSUPDRVSESSION pSession, PINTNETIFCLOSEREQ pReq);
    688688
    689689
     
    707707typedef INTNETIFGETRING3BUFFERREQ *PINTNETIFGETRING3BUFFERREQ;
    708708
    709 INTNETR0DECL(int) INTNETR0IfGetRing3BufferReq(PINTNET pIntNet, PINTNETIFGETRING3BUFFERREQ pReq);
     709INTNETR0DECL(int) INTNETR0IfGetRing3BufferReq(PINTNET pIntNet, PSUPDRVSESSION pSession, PINTNETIFGETRING3BUFFERREQ pReq);
    710710
    711711
     
    729729typedef INTNETIFSETPROMISCUOUSMODEREQ *PINTNETIFSETPROMISCUOUSMODEREQ;
    730730
    731 INTNETR0DECL(int) INTNETR0IfSetPromiscuousModeReq(PINTNET pIntNet, PINTNETIFSETPROMISCUOUSMODEREQ pReq);
     731INTNETR0DECL(int) INTNETR0IfSetPromiscuousModeReq(PINTNET pIntNet, PSUPDRVSESSION pSession, PINTNETIFSETPROMISCUOUSMODEREQ pReq);
    732732
    733733
     
    749749typedef INTNETIFSENDREQ *PINTNETIFSENDREQ;
    750750
    751 INTNETR0DECL(int) INTNETR0IfSendReq(PINTNET pIntNet, PINTNETIFSENDREQ pReq);
     751INTNETR0DECL(int) INTNETR0IfSendReq(PINTNET pIntNet, PSUPDRVSESSION pSession, PINTNETIFSENDREQ pReq);
    752752
    753753
     
    771771typedef INTNETIFWAITREQ *PINTNETIFWAITREQ;
    772772
    773 INTNETR0DECL(int) INTNETR0IfWaitReq(PINTNET pIntNet, PINTNETIFWAITREQ pReq);
     773INTNETR0DECL(int) INTNETR0IfWaitReq(PINTNET pIntNet, PSUPDRVSESSION pSession, PINTNETIFWAITREQ pReq);
    774774
    775775
     
    819819 * @param   pIntNet     The instance handle.
    820820 * @param   hIf         The interface handle.
    821  */
    822 INTNETR0DECL(int) INTNETR0IfClose(PINTNET pIntNet, INTNETIFHANDLE hIf);
     821 * @param   pSession        The caller's session.
     822 */
     823INTNETR0DECL(int) INTNETR0IfClose(PINTNET pIntNet, INTNETIFHANDLE hIf, PSUPDRVSESSION pSession);
    823824
    824825/**
     
    836837 *
    837838 * @returns VBox status code.
    838  * @param   pIntNet     The instance data.
    839  * @param   hIF         The interface handle.
    840  * @param   ppRing3Buf  Where to store the address of the ring-3 mapping.
    841  */
    842 INTNETR0DECL(int) INTNETR0IfGetRing3Buffer(PINTNET pIntNet, INTNETIFHANDLE hIf, R3PTRTYPE(PINTNETBUF) *ppRing3Buf);
     839 * @param   pIntNet         The instance data.
     840 * @param   hIF             The interface handle.
     841 * @param   pSession        The caller's session.
     842 * @param   ppRing3Buf      Where to store the address of the ring-3 mapping.
     843 */
     844INTNETR0DECL(int) INTNETR0IfGetRing3Buffer(PINTNET pIntNet, INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, R3PTRTYPE(PINTNETBUF) *ppRing3Buf);
    843845
    844846/**
     
    848850 * @param   pIntNet         The instance handle.
    849851 * @param   hIf             The interface handle.
     852 * @param   pSession        The caller's session.
    850853 * @param   fPromiscuous    Set if the interface should be in promiscuous mode, clear if not.
    851854 */
    852 INTNETR0DECL(int) INTNETR0IfSetPromiscuousMode(PINTNET pIntNet, INTNETIFHANDLE hIf, bool fPromiscuous);
     855INTNETR0DECL(int) INTNETR0IfSetPromiscuousMode(PINTNET pIntNet, INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, bool fPromiscuous);
    853856
    854857/**
     
    863866 * @param   pIntNet     The instance data.
    864867 * @param   hIF         The interface handle.
     868 * @param   pSession    The caller's session.
    865869 * @param   pvFrame     Pointer to the frame. Optional, please don't use.
    866870 * @param   cbFrame     Size of the frame. Optional, please don't use.
    867871 */
    868 INTNETR0DECL(int) INTNETR0IfSend(PINTNET pIntNet, INTNETIFHANDLE hIf, const void *pvFrame, unsigned cbFrame);
     872INTNETR0DECL(int) INTNETR0IfSend(PINTNET pIntNet, INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, const void *pvFrame, unsigned cbFrame);
    869873
    870874/**
     
    873877 *
    874878 * @returns VBox status code.
    875  * @param   pIntNet     The instance handle.
    876  * @param   hIf         The interface handle.
    877  * @param   cMillies    Number of milliseconds to wait. RT_INDEFINITE_WAIT should be
    878  *                      used if indefinite wait is desired.
    879  */
    880 INTNETR0DECL(int) INTNETR0IfWait(PINTNET pIntNet, INTNETIFHANDLE hIf, uint32_t cMillies);
     879 * @param   pIntNet         The instance handle.
     880 * @param   hIf             The interface handle.
     881 * @param   pSession        The caller's session.
     882 * @param   cMillies        Number of milliseconds to wait. RT_INDEFINITE_WAIT should be
     883 *                          used if indefinite wait is desired.
     884 */
     885INTNETR0DECL(int) INTNETR0IfWait(PINTNET pIntNet, INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, uint32_t cMillies);
    881886
    882887/** @} */
Note: See TracChangeset for help on using the changeset viewer.

© 2025 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette