Searched refs:ipbuf (Results 1 - 7 of 7) sorted by relevance

/freebsd-10-stable/contrib/ipfilter/lib/
H A Dprinthost.c18 char ipbuf[64]; local
29 PRINTF("%s", inet_ntop(family, ptr, ipbuf, sizeof(ipbuf)));
H A Dprinthostmask.c20 char ipbuf[64]; local
31 PRINTF("%s", inet_ntop(family, ptr, ipbuf, sizeof(ipbuf)));
/freebsd-10-stable/contrib/ipfilter/ipsend/
H A Dip.c36 static char *ipbuf = NULL, *ethbuf = NULL; variable
103 if (!ipbuf)
105 ipbuf = (char *)malloc(65536);
106 if (!ipbuf)
113 eh = (ether_header_t *)ipbuf;
153 bcopy((char *)ip, ipbuf + sizeof(*eh), iplen);
154 err = sendip(nfd, ipbuf, sizeof(*eh) + iplen);
225 bcopy((char *)ip, ipbuf + sizeof(*eh), hlen);
226 bcopy(s + sent, ipbuf + sizeof(*eh) + hlen, ts - hlen);
227 err = sendip(nfd, ipbuf, sizeo
[all...]
/freebsd-10-stable/usr.sbin/jls/
H A Djls.c368 char ipbuf[INET6_ADDRSTRLEN]; local
392 ipbuf, sizeof(ipbuf)) == NULL)
395 printf("%6s %-15.15s\n", "", ipbuf);
406 ipbuf, sizeof(ipbuf)) == NULL)
409 printf("%6s %s\n", "", ipbuf);
/freebsd-10-stable/usr.sbin/quot/
H A Dquot.c111 static caddr_t ipbuf; local
118 if (ipbuf) {
119 free(ipbuf);
120 ipbuf = 0;
129 if (!ipbuf || ino < last || ino >= last + INOCNT(super)) {
142 if (!ipbuf
143 && !(ipbuf = malloc(INOSZ(super))))
147 || read(fd, ipbuf, INOSZ(super)) != (ssize_t)INOSZ(super))
153 &((struct ufs1_dinode *)ipbuf)[ino % INOCNT(super)]);
154 di2 = &((struct ufs2_dinode *)ipbuf)[in
[all...]
/freebsd-10-stable/contrib/sendmail/src/
H A Dmain.c772 char ipbuf[103]; local
774 ipbuf[0] = '\0';
783 (void) sm_snprintf(ipbuf, sizeof(ipbuf),
796 (void) sm_snprintf(ipbuf, sizeof(ipbuf),
801 if (ipbuf[0] == '\0')
805 sm_dprintf("\ta.k.a.: %s\n", ipbuf);
806 setclass('w', ipbuf);
2645 char ipbuf[10 local
[all...]
/freebsd-10-stable/sys/netipsec/
H A Dipsec.c525 struct ip ipbuf; local
558 m_copydata(m, 0, sizeof(ipbuf), (caddr_t)&ipbuf);
559 ip = &ipbuf;

Completed in 176 milliseconds