HomeSort by relevance Sort by last modified time
    Searched refs:frag_off (Results 1 - 25 of 30) sorted by null

1 2

  /external/android-clat/
translate.c 133 ip->frag_off = htons(IP_DF);
180 uint16_t frag_flags = ntohs(old_header->frag_off);
181 uint16_t frag_off = frag_flags & IP_OFFMASK; local
182 if (frag_off == 0 && (frag_flags & IP_MF) == 0) {
190 frag_hdr->ip6f_offlg = htons(frag_off << 3);
208 uint16_t frag_off = (ntohs(frag_hdr->ip6f_offlg & IP6F_OFF_MASK) >> 3); local
210 frag_off |= IP_MF;
212 ip_targ->frag_off = htons(frag_off);
clatd_microbenchmark.c 99 .frag_off = htons(IP_DF),
dump.c 44 frag_flags = ntohs(header->frag_off);
clatd_test.cpp 181 return ntohs(ip->frag_off) & (IP_OFFMASK | IP_MF);
194 return ntohs(ip->frag_off) & IP_OFFMASK;
358 ip->frag_off &= ~htons(IP_MF);
    [all...]
  /external/ltp/testcases/network/stress/ns-tools/
ns-icmpv4_sender.c 371 pkt.hdr.frag_off = htons(IPV4_DEFAULT_FLAG);
446 pkt->hdr.frag_off |= htonl(0x80000000);
454 pkt->hdr.frag_off |= htons(0x2000);
462 pkt->hdr.frag_off &= htons(0xbfff);
473 pkt->hdr.frag_off |= htons(seed);
  /external/boringssl/src/ssl/
d1_both.cc 175 !CBB_add_u24(cbb.get(), 0 /* frag_off */) ||
362 const size_t frag_off = msg_hdr.frag_off; local
365 if (frag_off > msg_len || frag_off + frag_len < frag_off ||
366 frag_off + frag_len > msg_len ||
400 OPENSSL_memcpy(frag->data + DTLS1_HM_HEADER_LENGTH + frag_off,
402 dtls1_hm_fragment_mark(frag, frag_off, frag_off + frag_len)
    [all...]
d1_pkt.cc 158 if (msg_hdr.frag_off == 0) {
  /bionic/libc/kernel/uapi/linux/
ip.h 85 __be16 frag_off; member in struct:iphdr
  /external/iproute2/include/uapi/linux/
ip.h 99 __be16 frag_off; member in struct:iphdr
  /external/kernel-headers/original/uapi/linux/
ip.h 99 __be16 frag_off; member in struct:iphdr
  /external/libnl/include/linux-private/linux/
ip.h 98 __be16 frag_off; member in struct:iphdr
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
ip.h 98 __be16 frag_off; member in struct:iphdr
  /external/iproute2/ip/
iptunnel.c 72 p->iph.frag_off = htons(IP_DF);
125 p->iph.frag_off = 0;
127 p->iph.frag_off = htons(IP_DF);
270 if (p.iph.ttl && p.iph.frag_off == 0) {
349 if (!(p->iph.frag_off & htons(IP_DF)))
  /bionic/libc/include/netinet/
ip.h 232 uint16_t frag_off; member in struct:iphdr
  /hardware/broadcom/wlan/bcmdhd/dhdutil/include/proto/
bcmip.h 174 uint16 frag_off; member in struct:ipv6_exthdr_frag
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netinet/
ip.h 59 u_int16_t frag_off; member in struct:iphdr
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_xdp.c 132 iph->frag_off = 0;
test_l4lb.c 382 if (iph->frag_off & PCKT_FRAGMENTED)
  /system/core/libnetutils/
packet.c 105 ip.frag_off = 0;
  /toolchain/binutils/binutils-2.27/gas/
expr.c 1785 offsetT frag_off; local
2074 offsetT frag_off; local
    [all...]
  /external/iptables/iptables/
nft-ipv4.c 65 add_payload(r, offsetof(struct iphdr, frag_off), 2,
222 case offsetof(struct iphdr, frag_off):
  /device/generic/goldfish/dhcp/common/
socket.cpp 180 ip.frag_off = 0;
  /frameworks/base/core/jni/
android_net_NetUtils.cpp 50 static const uint32_t kIPv4FlagsOffset = kEtherHeaderLen + offsetof(iphdr, frag_off);
  /external/iputils/
ping.c 1297 printf(" %1x %04x", ((ip->frag_off) & 0xe000) >> 13,
1298 (ip->frag_off) & 0x1fff);
    [all...]
  /external/iputils/Modules/
pg3.c 279 iph->frag_off = 0;

Completed in 658 milliseconds

1 2