Searched refs:netbr (Results 1 – 2 of 2) sorted by relevance
/freebsd/lib/libc/net/ |
H A D | getnetbynis.c | 190 unsigned int netbr[4]; in _nis_getnetbyaddr() local 217 netbr[--nn] = net2 & 0xff; in _nis_getnetbyaddr() 222 sprintf(buf, "%u", netbr[3]); in _nis_getnetbyaddr() 225 sprintf(buf, "%u.%u", netbr[2], netbr[3]); in _nis_getnetbyaddr() 228 sprintf(buf, "%u.%u.%u", netbr[1], netbr[2], netbr[3]); in _nis_getnetbyaddr() 231 sprintf(buf, "%u.%u.%u.%u", netbr[0], netbr[1], in _nis_getnetbyaddr() 232 netbr[2], netbr[3]); in _nis_getnetbyaddr()
|
H A D | getnetbydns.c | 268 unsigned int netbr[4]; in _dns_getnetbyaddr() local 305 netbr[--nn] = net2 & 0xff; in _dns_getnetbyaddr() 308 sprintf(qbuf, "0.0.0.%u.in-addr.arpa", netbr[3]); in _dns_getnetbyaddr() 311 sprintf(qbuf, "0.0.%u.%u.in-addr.arpa", netbr[3], netbr[2]); in _dns_getnetbyaddr() 314 sprintf(qbuf, "0.%u.%u.%u.in-addr.arpa", netbr[3], netbr[2], in _dns_getnetbyaddr() 315 netbr[1]); in _dns_getnetbyaddr() 318 sprintf(qbuf, "%u.%u.%u.%u.in-addr.arpa", netbr[3], netbr[2], in _dns_getnetbyaddr() 319 netbr[1], netbr[0]); in _dns_getnetbyaddr()
|