diff options
author | Max Kellermann <max@duempel.org> | 2015-02-10 20:30:10 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2015-02-10 22:06:06 +0100 |
commit | 4e30e747390ac6bb6a6e5ededfbcdae937579393 (patch) | |
tree | beb2d9acd687a62d476e796114efd8ea6b2f69ad /src/net/SocketUtil.hxx | |
parent | 42890b9acf50c4406b61b3b37078c00ec79411fa (diff) |
net/SocketAddress: light wrapper for struct sockaddr
Diffstat (limited to 'src/net/SocketUtil.hxx')
-rw-r--r-- | src/net/SocketUtil.hxx | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/net/SocketUtil.hxx b/src/net/SocketUtil.hxx index ad02ef481..c0a0c95db 100644 --- a/src/net/SocketUtil.hxx +++ b/src/net/SocketUtil.hxx @@ -26,9 +26,7 @@ #ifndef MPD_SOCKET_UTIL_HXX #define MPD_SOCKET_UTIL_HXX -#include <stddef.h> - -struct sockaddr; +class SocketAddress; class Error; /** @@ -47,7 +45,7 @@ class Error; */ int socket_bind_listen(int domain, int type, int protocol, - const struct sockaddr *address, size_t address_length, + SocketAddress address, int backlog, Error &error); |