HomeSort by: relevance | last modified time | path
    Searched defs:maxpacketsize (Results 1 - 6 of 6) sorted by relevancy

  /src/sys/netipsec/
xform_esp.c 690 int error, maxpacketsize; local in function:esp_output
729 maxpacketsize = IP_MAXPACKET;
734 maxpacketsize = IPV6_MAXPACKET;
746 if (skip + hlen + rlen + tlen > maxpacketsize) {
751 skip + hlen + rlen + tlen, maxpacketsize);
xform_ipcomp.c 360 int error, ralen, hlen, maxpacketsize; local in function:ipcomp_output
386 maxpacketsize = IP_MAXPACKET;
391 maxpacketsize = IPV6_MAXPACKET;
404 if (skip + hlen + ralen > maxpacketsize) {
410 skip + hlen + ralen, maxpacketsize);
xform_esp.c 690 int error, maxpacketsize; local in function:esp_output
729 maxpacketsize = IP_MAXPACKET;
734 maxpacketsize = IPV6_MAXPACKET;
746 if (skip + hlen + rlen + tlen > maxpacketsize) {
751 skip + hlen + rlen + tlen, maxpacketsize);
xform_ipcomp.c 360 int error, ralen, hlen, maxpacketsize; local in function:ipcomp_output
386 maxpacketsize = IP_MAXPACKET;
391 maxpacketsize = IPV6_MAXPACKET;
404 if (skip + hlen + ralen > maxpacketsize) {
410 skip + hlen + ralen, maxpacketsize);
xform_ah.c 891 int error, rplen, authsize, ahsize, maxpacketsize, roff; local in function:ah_output
912 maxpacketsize = IP_MAXPACKET;
918 maxpacketsize = IPV6_MAXPACKET;
932 if (ahsize + m->m_pkthdr.len > maxpacketsize) {
937 ahsize + m->m_pkthdr.len, maxpacketsize);
xform_ah.c 891 int error, rplen, authsize, ahsize, maxpacketsize, roff; local in function:ah_output
912 maxpacketsize = IP_MAXPACKET;
918 maxpacketsize = IPV6_MAXPACKET;
932 if (ahsize + m->m_pkthdr.len > maxpacketsize) {
937 ahsize + m->m_pkthdr.len, maxpacketsize);

Completed in 215 milliseconds