Skip to content
Snippets Groups Projects
Commit 37562b35 authored by Daniel Salzman's avatar Daniel Salzman
Browse files

Revert "server: don't use SO_REUSEADDR socket option"

Without SO_REUSEADDR re-binding to addresses can fail with e.g.:
knotd: error: cannot bind address ::@53 TCP (address already in use)

This reverts commit 43c4c513.
parent 961f97a6
No related branches found
No related tags found
No related merge requests found
Pipeline #70499 passed
......@@ -166,8 +166,6 @@ static void unlink_unix_socket(const struct sockaddr_storage *addr)
int net_bound_socket(int type, const struct sockaddr_storage *addr, enum net_flags flags)
{
int ret;
/* Create socket. */
int sock = net_unbound_socket(type, addr);
if (sock < 0) {
......@@ -179,6 +177,13 @@ int net_bound_socket(int type, const struct sockaddr_storage *addr, enum net_fla
unlink_unix_socket(addr);
}
/* Reuse old address if taken. */
int ret = sockopt_enable(sock, SOL_SOCKET, SO_REUSEADDR);
if (ret != KNOT_EOK) {
close(sock);
return ret;
}
/* Don't bind IPv4 for IPv6 any address. */
if (addr->ss_family == AF_INET6) {
ret = sockopt_enable(sock, IPPROTO_IPV6, IPV6_V6ONLY);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment