summaryrefslogtreecommitdiffhomepage
path: root/include/ntapi/nt_socket.h
diff options
context:
space:
mode:
authormidipix <writeonce@midipix.org>2016-03-22 15:43:24 -0400
committermidipix <writeonce@midipix.org>2016-03-22 15:43:24 -0400
commit5d86252d01b43b40c9c34d5c12b731e85a8ffc1c (patch)
treeba7653f5cfd6ca2c6af23277951b447488de589c /include/ntapi/nt_socket.h
parentf5a78b094189d5e1e79ef7800f9e37a9c1540329 (diff)
downloadntapi-5d86252d01b43b40c9c34d5c12b731e85a8ffc1c.tar.bz2
ntapi-5d86252d01b43b40c9c34d5c12b731e85a8ffc1c.tar.xz
socket interfaces: sc_getpeername: initial integration.
Integration of this function into the library has been delayed since the AFD ioctl operation, while succeeding, seems to only memset the caller's address buffer, and accordingly to never copy the remote socket address to it. Callers of sc_getpeername() should therefore first check the return value for success -- which may be used as indication that the socket is connected -- and then test the returned address buffer for validity.
Diffstat (limited to 'include/ntapi/nt_socket.h')
-rw-r--r--include/ntapi/nt_socket.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/ntapi/nt_socket.h b/include/ntapi/nt_socket.h
index fcf6d96..c984b92 100644
--- a/include/ntapi/nt_socket.h
+++ b/include/ntapi/nt_socket.h
@@ -413,6 +413,11 @@ typedef int32_t __cdecl ntapi_sc_getsockname(
__in uint16_t * addrlen,
__out nt_io_status_block * iosb __optional);
+typedef int32_t __cdecl ntapi_sc_getpeername(
+ __in nt_socket * hssocket,
+ __in nt_sockaddr * addr,
+ __in uint16_t * addrlen,
+ __out nt_io_status_block * iosb __optional);
typedef int32_t __cdecl ntapi_sc_server_accept_connection(
__in nt_socket * hssocket,