diff options
| author | 2017-11-17 00:02:03 +0000 | |
|---|---|---|
| committer | 2017-11-17 15:33:01 +0000 | |
| commit | 36040be2952186d56a6646ee7d972aaafdd4e31a (patch) | |
| tree | 72be7108a94dd6bd0ea2842c53ba8890c44d12d8 /include/socket.h | |
| parent | Add events which are fired when a service is added or deleted. (diff) | |
Fix a ton of -Wsign-conversion warnings.
Diffstat (limited to 'include/socket.h')
| -rw-r--r-- | include/socket.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/socket.h b/include/socket.h index 8c7cc2e4e..aec06b526 100644 --- a/include/socket.h +++ b/include/socket.h @@ -60,7 +60,7 @@ namespace irc struct sockaddr_in in4; struct sockaddr_in6 in6; /** Return the size of the structure for syscall passing */ - int sa_size() const; + socklen_t sa_size() const; /** Return port number or -1 if invalid */ int port() const; /** Return IP only */ @@ -84,7 +84,7 @@ namespace irc /** Construct a CIDR mask from the string. Will normalize (127.0.0.1/8 => 127.0.0.0/8). */ cidr_mask(const std::string& mask); /** Construct a CIDR mask of a given length from the given address */ - cidr_mask(const irc::sockets::sockaddrs& addr, int len); + cidr_mask(const irc::sockets::sockaddrs& addr, unsigned char len); /** Equality of bits, type, and length */ bool operator==(const cidr_mask& other) const; /** Ordering defined for maps */ |
