diff options
author | Peter Powell <petpow@saberuk.com> | 2019-02-07 13:08:21 +0000 |
---|---|---|
committer | Peter Powell <petpow@saberuk.com> | 2019-02-07 15:38:44 +0000 |
commit | 499121036c26a66a7b8b6195c8b837349f42df6c (patch) | |
tree | 3574cf01d4f084b9bbf7d2dba13a0049a4832c2a /include/socket.h | |
parent | dd6f545ab6ed7e6ce0800431addef6af0d2610c5 (diff) |
Add irc::sockets::untosa() for creating AF_UNIX sockaddrs.
Also fix an overly long albeit harmless memcpy when creating UNIX
socket listeners. Thanks to @psychon for reporting this.
Diffstat (limited to 'include/socket.h')
-rw-r--r-- | include/socket.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/socket.h b/include/socket.h index 47e89070f..e527bc7f5 100644 --- a/include/socket.h +++ b/include/socket.h @@ -120,6 +120,13 @@ namespace irc * @return true if the conversion was successful, false if not. */ CoreExport bool aptosa(const std::string& addr, int port, irc::sockets::sockaddrs& sa); + + /** Convert a UNIX socket path to a binary sockaddr. + * @param path The path to the UNIX socket. + * @param sa The structure to place the result in. Will be zeroed prior to conversion. + * @return True if the conversion was successful; otherwise, false. + */ + CoreExport bool untosa(const std::string& path, irc::sockets::sockaddrs& sa); } } |