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