summaryrefslogtreecommitdiff
path: root/src/libstddjb/socket_bind4r.c
blob: 6c4b7e221218648b81524399e75949e70832740c (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_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) ;
}