summaryrefslogtreecommitdiff
path: root/src/libstddjb/socket_bind4r.c
blob: 55f09033936d104a945b7e78d3ff27aed0937dc9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* ISC license. */

#include <skalibs/nonposix.h>
#include <sys/socket.h>
#include <skalibs/uint16.h>
#include <skalibs/socket.h>

int socket_bind4_reuse (int s, char const *ip, uint16 port)
{
  unsigned int opt = 1 ;
  setsockopt(s, SOL_SOCKET, SO_REUSEADDR, &opt, sizeof opt) ;
  return socket_bind4(s, ip, port) ;
}