- t2ex
- bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf.c - 57.8KB - 1,910 lines
935: while (n) {
936: if (M_READONLY(m) || n->m_len > M_TRAILINGSPACE(m)) {
937: /* just join the two chains */
- More results from uipc_mbuf.c
- bsd_source/t2ex/network/net/src_bsd/kern/uipc_mbuf2.c - 12.9KB - 420 lines
114:
115: sharedcluster = M_READONLY(n);
116:
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_icmp.c - 44.0KB - 1,314 lines
487: i = hlen + min(icmplen, ICMP_ADVLENMIN);
488: if ((m->m_len < i || M_READONLY(m)) && (m = m_pullup(m, i)) == 0) {
489: ICMP_STATINC(ICMP_STAT_TOOSHORT);
- bsd_source/t2ex/network/net/src_bsd/netinet/ip_output.c - 67.3KB - 1,940 lines
1129: ip->ip_dst = p->ipopt_dst;
1130: if (M_READONLY(m) || M_LEADINGSPACE(m) < optlen) {
1131: MGETHDR(n, M_DONTWAIT, MT_HEADER);
- bsd_source/t2ex/network/net/src_bsd/netinet/raw_ip.c - 23.3KB - 747 lines
375: */
376: if (M_READONLY(m)) {
377: int hlen = ip->ip_hl << 2;
- bsd_source/t2ex/network/net/src_bsd/sys/mbuf.h - 42.4KB - 986 lines
653: #define M_UNWRITABLE(__m, __len) \
654: ((__m)->m_len < (__len) || M_READONLY((__m)))
655: /*
- More results from mbuf.h