Changeset 26916 in vbox for trunk/include/VBox
- Timestamp:
- Mar 1, 2010 2:53:27 PM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 58200
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/VBox/VBoxHDD.h
r26163 r26916 34 34 #include <iprt/string.h> 35 35 #include <iprt/mem.h> 36 #include <iprt/net.h> 36 37 #include <VBox/cdefs.h> 37 38 #include <VBox/types.h> … … 1011 1012 DECLR3CALLBACKMEMBER(int, pfnFlush, (RTSOCKET Sock)); 1012 1013 1014 /** 1015 * Gets the address of the local side. 1016 * 1017 * @return iprt status code. 1018 * @param Sock Socket descriptor. 1019 * @param pAddr Where to store the local address on success. 1020 */ 1021 DECLR3CALLBACKMEMBER(int, pfnGetLocalAddress, (RTSOCKET Sock, PRTNETADDR pAddr)); 1022 1023 /** 1024 * Gets the address of the other party. 1025 * 1026 * @return iprt status code. 1027 * @param Sock Socket descriptor. 1028 * @param pAddr Where to store the peer address on success. 1029 */ 1030 DECLR3CALLBACKMEMBER(int, pfnGetPeerAddress, (RTSOCKET Sock, PRTNETADDR pAddr)); 1031 1013 1032 } VDINTERFACETCPNET, *PVDINTERFACETCPNET; 1014 1033
Note:
See TracChangeset
for help on using the changeset viewer.