Searched refs:iphlen (Results 1 - 5 of 5) sorted by relevance

/darwin-on-arm/xnu/bsd/netinet/
H A Dudp_usrreq.c251 udp_input(m, iphlen)
253 int iphlen;
293 if (iphlen > sizeof (struct ip)) {
295 iphlen = sizeof(struct ip);
302 if (m->m_len < iphlen + sizeof(struct udphdr)) {
303 if ((m = m_pullup(m, iphlen + sizeof(struct udphdr))) == 0) {
310 uh = (struct udphdr *)(void *)((caddr_t)ip + iphlen);
524 iphlen + sizeof(struct udphdr),
528 iphlen + sizeof(struct udphdr),
557 uh = (struct udphdr *)(void *)((caddr_t)ip + iphlen);
[all...]
H A Draw_ip.c196 rip_input(m, iphlen)
198 int iphlen;
262 n->m_len -= iphlen;
263 n->m_pkthdr.len -= iphlen;
264 n->m_data += iphlen;
317 m->m_len -= iphlen;
318 m->m_pkthdr.len -= iphlen;
319 m->m_data += iphlen;
H A Dip_mroute.c142 rsvp_input(struct mbuf *m, int iphlen) /* XXX must fixup manually */ argument
156 rip_input(m, iphlen);
163 void ipip_input(struct mbuf *m, int iphlen) { /* XXX must fixup manually */ argument
164 rip_input(m, iphlen);
218 extern void X_ipip_input(struct mbuf *m, int iphlen);
1579 X_ipip_input(struct mbuf *m, int iphlen) argument
1581 ipip_input(struct mbuf *m, int iphlen)
1590 rip_input(m, iphlen);
2036 rsvp_input(struct mbuf *m, int iphlen) argument
2079 rip_input(m, iphlen); /* xx
[all...]
H A Digmp.c1557 int iphlen; local
1576 iphlen = off;
1612 m->m_data += iphlen;
1613 m->m_len -= iphlen;
1620 m->m_data -= iphlen;
1621 m->m_len += iphlen;
/darwin-on-arm/xnu/bsd/netinet6/
H A Desp_input.c142 esp4_input_strip_UDP_encap (struct mbuf *m, int iphlen) argument
149 ovbcopy((caddr_t)ip, (caddr_t)(((u_char *)ip) + stripsiz), iphlen);

Completed in 39 milliseconds