Home
last modified time | relevance | path

Searched refs:maxpacketsize (Results 1 – 8 of 8) sorted by relevance

/freebsd/sys/netinet/libalias/
H A Dalias.c835 UdpAliasOut(struct libalias *la, struct ip *pip, int maxpacketsize, int create) in UdpAliasOut() argument
902 ProxyModify(la, lnk, pip, maxpacketsize, proxy_type); in UdpAliasOut()
1064 TcpAliasOut(struct libalias *la, struct ip *pip, int maxpacketsize, int create) in TcpAliasOut() argument
1127 .maxpktsize = maxpacketsize in TcpAliasOut()
1136 ProxyModify(la, lnk, pip, maxpacketsize, proxy_type); in TcpAliasOut()
1312 int maxpacketsize, int create);
1315 int maxpacketsize);
1318 LibAliasIn(struct libalias *la, void *ptr, int maxpacketsize) in LibAliasIn() argument
1323 res = LibAliasInLocked(la, (struct ip *)ptr, maxpacketsize); in LibAliasIn()
1329 LibAliasInLocked(struct libalias *la, struct ip *pip, int maxpacketsize) in LibAliasInLocked() argument
[all …]
H A Dalias_ftp.c103 int maxpacketsize);
220 int maxpacketsize /* The maximum size this packet can grow to in AliasHandleFtpOut() argument
263 NewFtpMessage(la, pip, lnk, maxpacketsize, ftp_message_type); in AliasHandleFtpOut()
636 int maxpacketsize, in NewFtpMessage() argument
725 strncpy(sptr, stemp, maxpacketsize - hlen); in NewFtpMessage()
744 MIN(slen, maxpacketsize - hlen)); in NewFtpMessage()
H A Dalias_proxy.c287 int maxpacketsize) in ProxyEncodeTcpStream() argument
319 if ((int)(ntohs(pip->ip_len) + strlen(buffer)) > maxpacketsize) in ProxyEncodeTcpStream()
376 ProxyEncodeIpHeader(struct ip *pip, int maxpacketsize) in ProxyEncodeIpHeader() argument
388 (void)maxpacketsize; in ProxyEncodeIpHeader()
494 int maxpacketsize, in ProxyModify() argument
502 ProxyEncodeIpHeader(pip, maxpacketsize); in ProxyModify()
506 ProxyEncodeTcpStream(lnk, pip, maxpacketsize); in ProxyModify()
H A Dalias_smedia.c133 int maxpacketsize);
465 AliasHandleRtspOut(struct libalias *la, struct ip *pip, struct alias_link *lnk, int maxpacketsize) in AliasHandleRtspOut() argument
475 (void)maxpacketsize; in AliasHandleRtspOut()
H A Dalias_irc.c93 int maxpacketsize);
/freebsd/sys/netipsec/
H A Dxform_ipcomp.c407 int error, ralen, maxpacketsize; in ipcomp_output() local
433 maxpacketsize = IP_MAXPACKET; in ipcomp_output()
438 maxpacketsize = IPV6_MAXPACKET; in ipcomp_output()
451 if (ralen + skip + IPCOMP_HLENGTH > maxpacketsize) { in ipcomp_output()
457 ralen + skip + IPCOMP_HLENGTH, maxpacketsize)); in ipcomp_output()
H A Dxform_esp.c708 int error, maxpacketsize; in esp_output() local
749 maxpacketsize = IP_MAXPACKET; in esp_output()
754 maxpacketsize = IPV6_MAXPACKET; in esp_output()
769 if (skip + hlen + rlen + padding + alen > maxpacketsize) { in esp_output()
774 skip + hlen + rlen + padding + alen, maxpacketsize)); in esp_output()
H A Dxform_ah.c853 int error, rplen, authsize, ahsize, maxpacketsize, roff; in ah_output() local
874 maxpacketsize = IP_MAXPACKET; in ah_output()
879 maxpacketsize = IPV6_MAXPACKET; in ah_output()
892 if (ahsize + m->m_pkthdr.len > maxpacketsize) { in ah_output()
897 ahsize + m->m_pkthdr.len, maxpacketsize)); in ah_output()