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

  /src/sys/netinet6/
frag6.c 177 int fragoff, frgpartlen; /* must be larger than u_int16_t */ local in function:frag6_input
235 fragoff = ntohs(ip6f->ip6f_offlg & IP6F_OFF_MASK);
236 if (fragoff == 0 && !(ip6f->ip6f_offlg & IP6F_MORE_FRAG)) {
309 if (fragoff == 0) {
322 if (q6->ip6q_unfrglen + fragoff + frgpartlen > IPV6_MAXPACKET) {
329 } else if (fragoff + frgpartlen > IPV6_MAXPACKET) {
341 if (fragoff == 0) {
383 ip6af->ip6af_off = fragoff;
  /src/sys/dist/pf/net/
pf_norm.c 866 u_int16_t fragoff = (ntohs(h->ip_off) & IP_OFFMASK) << 3; local in function:pf_normalize_ip
916 if (!fragoff && !mff)
937 if (fragoff + ip_len > IP_MAXPACKET) {
938 DPFPRINTF(("max packet %d\n", fragoff + ip_len));
941 frmax = fragoff + ip_len;
964 DPFPRINTF(("reass frag %d @ %d-%d\n", h->ip_id, fragoff, frmax));
1109 u_int16_t fragoff = 0; local in function:pf_normalize_ip6
1246 fragoff = ntohs(frag.ip6f_offlg & IP6F_OFF_MASK);
1247 if (fragoff + (plen - off - sizeof(frag)) > IPV6_MAXPACKET)
pf.c 5025 u_int16_t fragoff = (ntohs(h->ip_off) & IP_OFFMASK) << 3; local in function:pf_pull_hdr
5027 if (fragoff) {
5028 if (fragoff >= len)

Completed in 38 milliseconds