HomeSort by relevance Sort by last modified time
    Searched refs:frag_hdr (Results 1 - 4 of 4) sorted by null

  /external/android-clat/
ipv6.c 81 struct ip6_frag *frag_hdr = NULL; local
128 frag_hdr = (struct ip6_frag *) next_header;
129 if (len_left < sizeof(*frag_hdr)) {
134 next_header += sizeof(*frag_hdr);
135 len_left -= sizeof(*frag_hdr);
137 protocol = parse_frag_header(frag_hdr, ip_targ);
155 if (frag_hdr && (frag_hdr->ip6f_offlg & IP6F_OFF_MASK)) {
ipv4.c 60 struct ip6_frag *frag_hdr; local
118 frag_hdr = (struct ip6_frag *) out[pos + 1].iov_base;
119 frag_hdr_len = maybe_fill_frag_header(frag_hdr, ip6_targ, header);
122 if (frag_hdr_len && frag_hdr->ip6f_offlg & IP6F_OFF_MASK) {
translate.h 59 size_t maybe_fill_frag_header(struct ip6_frag *frag_hdr, struct ip6_hdr *ip6_targ,
61 uint8_t parse_frag_header(const struct ip6_frag *frag_hdr, struct iphdr *ip_targ);
64 size_t maybe_fill_frag_header(struct ip6_frag *frag_hdr, struct ip6_hdr *ip6_targ,
66 uint8_t parse_frag_header(const struct ip6_frag *frag_hdr, struct iphdr *ip_targ);
translate.c 173 * frag_hdr - target (ipv6) fragmentation header
178 size_t maybe_fill_frag_header(struct ip6_frag *frag_hdr, struct ip6_hdr *ip6_targ,
187 frag_hdr->ip6f_nxt = ip6_targ->ip6_nxt;
188 frag_hdr->ip6f_reserved = 0;
190 frag_hdr->ip6f_offlg = htons(frag_off << 3);
192 frag_hdr->ip6f_offlg |= IP6F_MORE_FRAG;
194 frag_hdr->ip6f_ident = htonl(ntohs(old_header->id));
197 return sizeof(*frag_hdr);
203 * frag_hdr - (ipv6) fragmentation header
207 uint8_t parse_frag_header(const struct ip6_frag *frag_hdr, struct iphdr *ip_targ)
    [all...]

Completed in 63 milliseconds