Searched defs:abuf (Results 1 - 6 of 6) sorted by relevance

/bind-9.11.3/lib/isc/tests/
H A Dinet_ntop_test.c29 unsigned char abuf[16]; local
46 r = inet_pton(testdata[i].family, testdata[i].address, abuf);
48 isc_net_ntop(testdata[i].family, abuf, buf, sizeof(buf));
/bind-9.11.3/lib/dns/rdata/generic/
H A Dkeydata_65533.c173 char abuf[ISC_FORMATHTTPTIMESTAMP_SIZE]; local
215 isc_time_formathttptimestamp(&t, abuf,
216 sizeof(abuf));
217 RETERR(str_totext(abuf, target));
/bind-9.11.3/lib/dns/tests/
H A Dgost_test.c241 unsigned char abuf[71]; local
281 q = abuf;
283 ATF_REQUIRE(memcmp(abuf, privasn1, len) == 0);
/bind-9.11.3/lib/isc/
H A Dnetaddr.c119 char abuf[sizeof("xxxx:xxxx:xxxx:xxxx:xxxx:xxxx:255.255.255.255")]; local
148 r = inet_ntop(netaddr->family, type, abuf, sizeof(abuf));
152 alen = strlen(abuf);
153 INSIST(alen < sizeof(abuf));
166 isc_buffer_putmem(target, (unsigned char *)abuf, alen);
/bind-9.11.3/lib/lwres/
H A Dgetaddrinfo.c352 char abuf[sizeof(struct in6_addr)]; local
390 if (lwres_net_pton(AF_INET, hostname, (struct in_addr *)abuf)
397 struct in6_addr *a6 = (struct in6_addr *)abuf;
409 lwres_net_pton(AF_INET6, ntmp, abuf) == 1)
418 } else if (lwres_net_pton(AF_INET6, hostname, abuf) == 1) {
433 memmove((char *)ai->ai_addr + addroff, abuf, addrsize);
/bind-9.11.3/lib/irs/
H A Dgetaddrinfo.c362 char abuf[sizeof(struct in6_addr)]; local
399 if (inet_pton(AF_INET, hostname, (struct in_addr *)abuf)
405 struct in6_addr *a6 = (struct in6_addr *)abuf;
417 inet_pton(AF_INET6, ntmp, abuf) == 1) {
425 } else if (inet_pton(AF_INET6, hostname, abuf) == 1) {
443 memmove((char *)ai->ai_addr + addroff, abuf, addrsize);

Completed in 16 milliseconds