blob: e52876a3f494674833a075cde08cf2ce00497050 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/* ISC license. */
#include <skalibs/nonposix.h>
#include <sys/socket.h>
#include <skalibs/socket.h>
int socket_bind6_reuse (int s, char const *ip6, uint16_t port)
{
static unsigned int const opt = 1 ;
setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof opt) ;
return socket_bind6(s, ip6, port) ;
}
|