Searched refs:max_protohdr (Results 1 – 4 of 4) sorted by relevance
| /freebsd-14.2/sys/kern/ |
| H A D | uipc_mbuf.c | 127 u_int max_protohdr = 40; variable 131 SYSCTL_INT(_kern_ipc, KIPC_MAX_PROTOHDR, max_protohdr, CTLFLAG_RD, 132 &max_protohdr, 40, "Size of largest protocol layer header"); 140 max_hdr = max_linkhdr + max_protohdr; in max_hdr_grow() 158 if (new > max_protohdr) { in max_protohdr_grow() 159 max_protohdr = new; in max_protohdr_grow() 962 count = min(min(max(len, max_protohdr), space), n->m_len); in m_pullup() 1006 count = min(min(max(len, max_protohdr), space), n->m_len); in m_copyup()
|
| /freebsd-14.2/sys/net/ |
| H A D | if_bridge.c | 2612 int i = min(mc2->m_pkthdr.len, max_protohdr); in bridge_input() 2817 i = min(mc->m_pkthdr.len, max_protohdr); in bridge_broadcast() 3412 i = min((*mp)->m_pkthdr.len, max_protohdr); in bridge_pfil()
|
| /freebsd-14.2/sys/sys/ |
| H A D | mbuf.h | 1305 extern u_int max_protohdr; /* Largest protocol header */
|
| /freebsd-14.2/sys/netpfil/ipfw/ |
| H A D | ip_fw2.c | 1482 if (m->m_len < min(m->m_pkthdr.len, max_protohdr) && in ipfw_chk() 1484 max_protohdr))) == NULL) in ipfw_chk()
|