Searched refs:maxpacketsize (Results 1 – 3 of 3) sorted by relevance
/netbsd-src/sys/netipsec/ |
H A D | xform_ipcomp.c | 360 int error, ralen, hlen, maxpacketsize; in ipcomp_output() local 386 maxpacketsize = IP_MAXPACKET; in ipcomp_output() 391 maxpacketsize = IPV6_MAXPACKET; in ipcomp_output() 404 if (skip + hlen + ralen > maxpacketsize) { in ipcomp_output() 410 skip + hlen + ralen, maxpacketsize); in ipcomp_output()
|
H A D | xform_esp.c | 690 int error, maxpacketsize; in esp_output() local 729 maxpacketsize = IP_MAXPACKET; in esp_output() 734 maxpacketsize = IPV6_MAXPACKET; in esp_output() 746 if (skip + hlen + rlen + tlen > maxpacketsize) { in esp_output() 751 skip + hlen + rlen + tlen, maxpacketsize); in esp_output()
|
H A D | xform_ah.c | 891 int error, rplen, authsize, ahsize, maxpacketsize, roff; in ah_output() local 912 maxpacketsize = IP_MAXPACKET; in ah_output() 918 maxpacketsize = IPV6_MAXPACKET; in ah_output() 932 if (ahsize + m->m_pkthdr.len > maxpacketsize) { in ah_output() 937 ahsize + m->m_pkthdr.len, maxpacketsize); in ah_output()
|