summaryrefslogtreecommitdiff
path: root/src/libstddjb/socket_udp6.c
blob: 41d395aaddec7b65dcbccfcd18954eb1ab9e4baf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
/* ISC license. */

#include <skalibs/nonposix.h>
#include <errno.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <skalibs/djbunix.h>
#include <skalibs/ip46.h>
#include <skalibs/socket.h>

#ifdef SKALIBS_IPV6_ENABLED

int socket_udp6_internal (unsigned int flags)
{
  int fd = socket_internal(AF_INET6, SOCK_DGRAM, 0, flags) ;
  if (fd < 0) return fd ;
  {
    int option = 1 ;
    if (setsockopt(fd, IPPROTO_IPV6, IPV6_V6ONLY, &option, sizeof(option)) < 0)
    {
      register int e = errno ;
      fd_close(fd) ;
      errno = e ;
      return -1 ;
    }
  }
  return fd ;
}

#else

int socket_udp6_internal (unsigned int flags)
{
  (void)flags ;
  return (errno = ENOSYS, -1) ;
}

#endif