diff options
Diffstat (limited to 'include/socket.h')
-rw-r--r-- | include/socket.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/socket.h b/include/socket.h index c7b87d583..ddd453ac3 100644 --- a/include/socket.h +++ b/include/socket.h @@ -143,6 +143,12 @@ namespace irc */ CoreExport int OpenTCPSocket(const char* addr, int socktype = SOCK_STREAM); + /** Return the size of the structure for syscall passing */ + int sa_size(irc::sockets::sockaddrs& sa) + { + return sa.sa.sa_family == AF_INET ? sizeof(sa.in4) : sizeof(sa.in6); + } + /** Convert an address-port pair into a binary sockaddr * @param addr The IP address, IPv4 or IPv6 * @param port The port, 0 for unspecified |