/* ISC license. */ #include #include #include #include #include #include #include #include #ifdef SKALIBS_IPV6_ENABLED int socket_bind6 (int s, char const *ip6, uint16_t port) { struct sockaddr_in6 sa ; memset(&sa, 0, sizeof sa) ; sa.sin6_family = AF_INET6 ; uint16_pack_big((char *)&sa.sin6_port, port) ; memcpy(sa.sin6_addr.s6_addr, ip6, 16) ; return bind(s, (struct sockaddr *)&sa, sizeof sa) ; } #else int socket_bind6 (int s, char const *ip6, uint16_t port) { (void)s ; (void)ip6 ; (void)port ; return (errno = ENOSYS, -1) ; } #endif