aboutsummaryrefslogtreecommitdiff
path: root/benchtests/inet_ntop_ipv6-source.c
blob: f255c275c474aba488fd1b539aa5588325a9b35f (plain)
1
2
3
4
5
6
7
8
9
10
#include <arpa/inet.h>
#include <stdint.h>

static void
inet_ntop_ipv6 (uint32_t addr1, uint32_t addr2, uint32_t addr3, uint32_t addr4)
{
  struct in6_addr saddr = { .s6_addr32 = { addr1, addr2, addr3, addr4 } };
  char dst[INET6_ADDRSTRLEN];
  inet_ntop (AF_INET6, &saddr, dst, sizeof dst);
}