Lines Matching defs:maxpacketsize
835 UdpAliasOut(struct libalias *la, struct ip *pip, int maxpacketsize, int create)
902 ProxyModify(la, lnk, pip, maxpacketsize, proxy_type);
1064 TcpAliasOut(struct libalias *la, struct ip *pip, int maxpacketsize, int create)
1127 .maxpktsize = maxpacketsize
1136 ProxyModify(la, lnk, pip, maxpacketsize, proxy_type);
1312 int maxpacketsize, int create);
1315 int maxpacketsize);
1318 LibAliasIn(struct libalias *la, void *ptr, int maxpacketsize)
1323 res = LibAliasInLocked(la, (struct ip *)ptr, maxpacketsize);
1329 LibAliasInLocked(struct libalias *la, struct ip *pip, int maxpacketsize)
1336 iresult = LibAliasOutLocked(la, pip, maxpacketsize, 1);
1344 if (ntohs(pip->ip_len) > maxpacketsize
1345 || (pip->ip_hl << 2) > maxpacketsize) {
1434 LibAliasOut(struct libalias *la, void *ptr, int maxpacketsize)
1439 res = LibAliasOutLocked(la, (struct ip *)ptr, maxpacketsize, 1);
1445 LibAliasOutTry(struct libalias *la, void *ptr, int maxpacketsize, int create)
1450 res = LibAliasOutLocked(la, (struct ip *)ptr, maxpacketsize, create);
1458 int maxpacketsize, /* How much the packet data may grow (FTP and IRC inline changes) */
1467 iresult = LibAliasInLocked(la, pip, maxpacketsize);
1474 if (ntohs(pip->ip_len) > maxpacketsize
1475 || (pip->ip_hl << 2) > maxpacketsize) {
1516 iresult = UdpAliasOut(la, pip, maxpacketsize, create);
1519 iresult = TcpAliasOut(la, pip, maxpacketsize, create);
1561 int maxpacketsize /* for error checking */
1575 if (ntohs(pip->ip_len) > maxpacketsize
1576 || (pip->ip_hl << 2) > maxpacketsize)