TcpSocket#Bind(): reuse socket addresses on Windows, too

refs #6378
This commit is contained in:
Alexander A. Klimov 2018-06-22 10:33:31 +02:00
parent 89033343e8
commit 79878ea286
1 changed files with 0 additions and 2 deletions

View File

@ -89,10 +89,8 @@ void TcpSocket::Bind(const String& node, const String& service, int family)
const int optFalse = 0;
setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, reinterpret_cast<const char *>(&optFalse), sizeof(optFalse));
#ifndef _WIN32
const int optTrue = 1;
setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, reinterpret_cast<const char *>(&optTrue), sizeof(optTrue));
#endif /* _WIN32 */
int rc = bind(fd, info->ai_addr, info->ai_addrlen);