- t2ex
- bsd_source/t2ex/network/net/src_bsd/netinet/ip6.h - 12.9KB - 319 lines
285: if ((m)->m_len >= (off) + (len)) \
286: (val) = (typ)(mtod((m), char *) + (off)); \
287: else { \
- More results from ip6.h
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_encap.c - 27.8KB - 992 lines
296: #endif
297: ip = mtod(m, struct ip *);
298:
- More results from ip_encap.c
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_flow.c - 15.7KB - 521 lines
209: */
210: if (IP_HDR_ALIGNED_P(mtod(m, const void *)))
211: ip = mtod(m, struct ip *);
- More results from ip_flow.c
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_icmp.c - 44.0KB - 1,314 lines
372: MH_ALIGN(m, m->m_len);
373: icp = mtod(m, struct icmp *);
374: if ((u_int)type > ICMP_MAXTYPE)
- More results from ip_icmp.c
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_input.c - 90.8KB - 2,575 lines
655: */
656: if (IP_HDR_ALIGNED_P(mtod(m, void *)) == 0) {
657: if ((m = m_copyup(m, sizeof(struct ip),
- More results from ip_input.c
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_output.c - 67.3KB - 1,940 lines
255: }
256: ip = mtod(m, struct ip *);
257: /*
- More results from ip_output.c
- bsd_source/t2ex/network/net/src_bsd/netinet/raw_ip.c - 23.3KB - 747 lines
354: return (ENOBUFS);
355: ip = mtod(m, struct ip *);
356: ip->ip_tos = 0;
- More results from raw_ip.c
- bsd_source/t2ex/network/net/src_bsd/netinet/tcp_debug.c - 7.9KB - 223 lines
140: struct ip *ip;
141: ip = mtod(m, struct ip *);
142: switch (ip->ip_v) {
- More results from tcp_debug.c
- bsd_source/t2ex/network/net/src_bsd/netinet/tcp_input.c - 167.0KB - 4,503 lines
820: }
821: ip6 = mtod(m, struct ip6_hdr *);
822: icmp6_error(m, ICMP6_DST_UNREACH, ICMP6_DST_UNREACH_ADDR,
- More results from tcp_input.c
- bsd_source/t2ex/network/net/src_bsd/netinet/tcp_output.c - 62.9KB - 1,704 lines
517: if (len <= M_TRAILINGSPACE(m)) {
518: m_copydata(m0, off, (int) len, mtod(m, char *) + hdrlen);
519: m->m_len += len;
- More results from tcp_output.c