blob: 6316861f042ee3251d708f4456e8b92fcabff761 (
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
|
/* ISC license. */
#include <skalibs/nonposix.h>
#include <sys/socket.h>
#include <netinet/in.h>
#include <errno.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)
{
fd_close(fd) ;
return -1 ;
}
}
return fd ;
}
#else
int socket_udp6_internal (unsigned int flags)
{
(void)flags ;
return (errno = ENOSYS, -1) ;
}
#endif
|