Don't require OS headers to provide SO_REUSEPORT

(cherry picked from commit bf0c68757f)
This commit is contained in:
Alexander A. Klimov 2019-02-26 11:25:44 +01:00 committed by Michael Friedrich
parent 101783d7ef
commit 1436b7dc1c
1 changed files with 2 additions and 2 deletions

View File

@ -91,9 +91,9 @@ void TcpSocket::Bind(const String& node, const String& service, int family)
const int optTrue = 1;
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, reinterpret_cast<const char *>(&optTrue), sizeof(optTrue));
#ifndef _WIN32
#ifdef SO_REUSEPORT
setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, reinterpret_cast<const char *>(&optTrue), sizeof(optTrue));
#endif /* _WIN32 */
#endif /* SO_REUSEPORT */
int rc = bind(fd, info->ai_addr, info->ai_addrlen);