Symbol: IP_MAXPACKET
crypto/dist/ipsec-tools/src/racoon/remoteconf.c
496
new->esp_frag = IP_MAXPACKET;
regress/sys/net/frag/ip4_frag_1.c
266
cnt = IP_MAXPACKET / 1480;
regress/sys/net/frag/ip4_frag_1.c
267
left = IP_MAXPACKET - (1480 * cnt);
sbin/ping/ping.c
203
static int bufspace = IP_MAXPACKET;
sbin/ping/ping.c
98
#define MAXPACKET (IP_MAXPACKET-60-8) /* max packet size */
sys/arch/powerpc/ibm4xx/dev/if_emac.c
156
#define EMAC_TSO_MAXLEN (IP_MAXPACKET + ETHER_HDR_LEN)
sys/dev/hyperv/if_hvn.c
4403
tso_maxsz = IP_MAXPACKET;
sys/dev/hyperv/if_hvn.c
4428
KASSERTMSG(tso_maxsz <= IP_MAXPACKET,
sys/dev/ic/rtl8169.c
857
round_page(IP_MAXPACKET),
sys/dev/pci/if_bgevar.h
203
#define BGE_TXDMA_MAX (round_page(IP_MAXPACKET)) /* for TSO */
sys/dev/pci/if_wm.c
225
#define WM_MAXTXDMA (2 * round_page(IP_MAXPACKET)) /* for TSO */
sys/dev/usb/if_axen.c
632
un->un_tx_bufsz = IP_MAXPACKET + ETHER_HDR_LEN + ETHER_CRC_LEN +
sys/dev/usb/if_muereg.h
134
#define MUE_TSO_FRAME_LEN MUE_FRAME_LEN(IP_MAXPACKET)
sys/dist/pf/net/pf_norm.c
499
if ((frent->fr_ip->ip_hl << 2) + off > IP_MAXPACKET) {
sys/dist/pf/net/pf_norm.c
937
if (fragoff + ip_len > IP_MAXPACKET) {
sys/netinet/dccp_usrreq.c
1338
if (!isipv6 && (len + hdrlen) > IP_MAXPACKET) {
sys/netinet/ip_output.c
1017
if (optlen + ntohs(ip->ip_len) > IP_MAXPACKET)
sys/netinet/ip_reass.c
372
if ((next + (ip->ip_hl << 2)) > IP_MAXPACKET) {
sys/netinet/ip_reass.c
640
if (off + len > IP_MAXPACKET) {
sys/netinet/raw_ip.c
324
if ((m->m_pkthdr.len + sizeof(struct ip)) > IP_MAXPACKET) {
sys/netinet/raw_ip.c
343
if (m->m_pkthdr.len > IP_MAXPACKET) {
sys/netinet/tcp_output.c
1222
else if (use_tso && len > IP_MAXPACKET)
sys/netinet/tcp_output.c
1388
if (urp > IP_MAXPACKET)
sys/netinet/tcp_output.c
1389
urp = IP_MAXPACKET;
sys/netinet/tcp_output.c
897
CTASSERT(IPV6_MAXPACKET == IP_MAXPACKET);
sys/netinet/tcp_output.c
899
len = (uimin(len, IP_MAXPACKET) / txsegsize) * txsegsize;
sys/netinet/udp_usrreq.c
792
if (len + sizeof(struct udpiphdr) > IP_MAXPACKET) {
sys/netipsec/key.c
4022
if (sav->natt_type == 0 || sav->esp_frag == IP_MAXPACKET)
sys/netipsec/key.c
5661
sav->esp_frag = IP_MAXPACKET;
sys/netipsec/xform_ah.c
912
maxpacketsize = IP_MAXPACKET;
sys/netipsec/xform_esp.c
729
maxpacketsize = IP_MAXPACKET;
sys/netipsec/xform_ipcomp.c
386
maxpacketsize = IP_MAXPACKET;
sys/rump/net/lib/libsockin/sockin.c
256
plen = IP_MAXPACKET;
tests/net/icmp/t_ping.c
143
char buf[IP_MAXPACKET - sizeof(struct ip)];
tests/net/icmp/t_ping.c
146
char recvbuf[IP_MAXPACKET];
tests/net/icmp/t_ping.c
305
for (i = 0 ; i < IP_MAXPACKET - 60000; i++) {
tests/net/icmp/t_ping.c
311
for (i = IP_MAXPACKET - 60000; i < IP_MAXPACKET - 100; i += 1000) {
tests/net/icmp/t_ping.c
317
for (i = IP_MAXPACKET - 100; i < IP_MAXPACKET; i += 10) {
usr.sbin/ndbootd/ndbootd.c
314
unsigned char packet_buffer[sizeof(struct ether_header) + IP_MAXPACKET];
usr.sbin/ndbootd/ndbootd.c
325
unsigned char ip_packet_buffer[IP_MAXPACKET];