Changeset 10806 in vbox for trunk/include/VBox
- Timestamp:
- Jul 22, 2008 11:07:38 AM (17 years ago)
- svn:sync-xref-src-repo-rev:
- 33584
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/intnet.h
r10761 r10806 685 685 typedef INTNETIFCLOSEREQ *PINTNETIFCLOSEREQ; 686 686 687 INTNETR0DECL(int) INTNETR0IfCloseReq(PINTNET pIntNet, P INTNETIFCLOSEREQ pReq);687 INTNETR0DECL(int) INTNETR0IfCloseReq(PINTNET pIntNet, PSUPDRVSESSION pSession, PINTNETIFCLOSEREQ pReq); 688 688 689 689 … … 707 707 typedef INTNETIFGETRING3BUFFERREQ *PINTNETIFGETRING3BUFFERREQ; 708 708 709 INTNETR0DECL(int) INTNETR0IfGetRing3BufferReq(PINTNET pIntNet, P INTNETIFGETRING3BUFFERREQ pReq);709 INTNETR0DECL(int) INTNETR0IfGetRing3BufferReq(PINTNET pIntNet, PSUPDRVSESSION pSession, PINTNETIFGETRING3BUFFERREQ pReq); 710 710 711 711 … … 729 729 typedef INTNETIFSETPROMISCUOUSMODEREQ *PINTNETIFSETPROMISCUOUSMODEREQ; 730 730 731 INTNETR0DECL(int) INTNETR0IfSetPromiscuousModeReq(PINTNET pIntNet, P INTNETIFSETPROMISCUOUSMODEREQ pReq);731 INTNETR0DECL(int) INTNETR0IfSetPromiscuousModeReq(PINTNET pIntNet, PSUPDRVSESSION pSession, PINTNETIFSETPROMISCUOUSMODEREQ pReq); 732 732 733 733 … … 749 749 typedef INTNETIFSENDREQ *PINTNETIFSENDREQ; 750 750 751 INTNETR0DECL(int) INTNETR0IfSendReq(PINTNET pIntNet, P INTNETIFSENDREQ pReq);751 INTNETR0DECL(int) INTNETR0IfSendReq(PINTNET pIntNet, PSUPDRVSESSION pSession, PINTNETIFSENDREQ pReq); 752 752 753 753 … … 771 771 typedef INTNETIFWAITREQ *PINTNETIFWAITREQ; 772 772 773 INTNETR0DECL(int) INTNETR0IfWaitReq(PINTNET pIntNet, P INTNETIFWAITREQ pReq);773 INTNETR0DECL(int) INTNETR0IfWaitReq(PINTNET pIntNet, PSUPDRVSESSION pSession, PINTNETIFWAITREQ pReq); 774 774 775 775 … … 819 819 * @param pIntNet The instance handle. 820 820 * @param hIf The interface handle. 821 */ 822 INTNETR0DECL(int) INTNETR0IfClose(PINTNET pIntNet, INTNETIFHANDLE hIf); 821 * @param pSession The caller's session. 822 */ 823 INTNETR0DECL(int) INTNETR0IfClose(PINTNET pIntNet, INTNETIFHANDLE hIf, PSUPDRVSESSION pSession); 823 824 824 825 /** … … 836 837 * 837 838 * @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 */ 844 INTNETR0DECL(int) INTNETR0IfGetRing3Buffer(PINTNET pIntNet, INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, R3PTRTYPE(PINTNETBUF) *ppRing3Buf); 843 845 844 846 /** … … 848 850 * @param pIntNet The instance handle. 849 851 * @param hIf The interface handle. 852 * @param pSession The caller's session. 850 853 * @param fPromiscuous Set if the interface should be in promiscuous mode, clear if not. 851 854 */ 852 INTNETR0DECL(int) INTNETR0IfSetPromiscuousMode(PINTNET pIntNet, INTNETIFHANDLE hIf, bool fPromiscuous);855 INTNETR0DECL(int) INTNETR0IfSetPromiscuousMode(PINTNET pIntNet, INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, bool fPromiscuous); 853 856 854 857 /** … … 863 866 * @param pIntNet The instance data. 864 867 * @param hIF The interface handle. 868 * @param pSession The caller's session. 865 869 * @param pvFrame Pointer to the frame. Optional, please don't use. 866 870 * @param cbFrame Size of the frame. Optional, please don't use. 867 871 */ 868 INTNETR0DECL(int) INTNETR0IfSend(PINTNET pIntNet, INTNETIFHANDLE hIf, const void *pvFrame, unsigned cbFrame);872 INTNETR0DECL(int) INTNETR0IfSend(PINTNET pIntNet, INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, const void *pvFrame, unsigned cbFrame); 869 873 870 874 /** … … 873 877 * 874 878 * @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 */ 885 INTNETR0DECL(int) INTNETR0IfWait(PINTNET pIntNet, INTNETIFHANDLE hIf, PSUPDRVSESSION pSession, uint32_t cMillies); 881 886 882 887 /** @} */
Note:
See TracChangeset
for help on using the changeset viewer.