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

1 2

  /external/syslinux/core/lwip/src/core/
tcp_in.c 63 static struct tcp_hdr *tcphdr; variable in typeref:struct:tcp_hdr
109 tcphdr = (struct tcp_hdr *)((u8_t *)p->payload + IPH_HL(iphdr) * 4);
112 tcp_debug_print(tcphdr);
144 tcp_debug_print(tcphdr);
156 hdrlen = TCPH_HDRLEN(tcphdr);
168 tcphdr->src = ntohs(tcphdr->src);
169 tcphdr->dest = ntohs(tcphdr->dest);
170 seqno = tcphdr->seqno = ntohl(tcphdr->seqno)
    [all...]
tcp_out.c 81 /** Allocate a pbuf and create a tcphdr at p->payload, used for output
95 struct tcp_hdr *tcphdr; local
100 tcphdr = (struct tcp_hdr *)p->payload;
101 tcphdr->src = htons(pcb->local_port);
102 tcphdr->dest = htons(pcb->remote_port);
103 tcphdr->seqno = seqno_be;
104 tcphdr->ackno = htonl(pcb->rcv_nxt);
105 TCPH_HDRLEN_FLAGS_SET(tcphdr, (5 + optlen / 4), TCP_ACK);
106 tcphdr->wnd = htons(pcb->rcv_ann_wnd);
107 tcphdr->chksum = 0
839 struct tcp_hdr *tcphdr; local
1192 struct tcp_hdr *tcphdr; local
1352 struct tcp_hdr *tcphdr; local
1402 struct tcp_hdr *tcphdr; local
    [all...]
tcp.c     [all...]
  /external/syslinux/gpxe/src/net/
tcp.c 396 struct tcp_header *tcphdr; local
481 tcphdr = iob_push ( iobuf, sizeof ( *tcphdr ) );
482 memset ( tcphdr, 0, sizeof ( *tcphdr ) );
483 tcphdr->src = tcp->local_port;
484 tcphdr->dest = tcp->peer.st_port;
485 tcphdr->seq = htonl ( tcp->snd_seq );
486 tcphdr->ack = htonl ( tcp->rcv_ack );
487 tcphdr->hlen = ( ( payload - iobuf->data ) << 2 )
559 struct tcp_header *tcphdr; local
892 struct tcp_header *tcphdr = iobuf->data; local
    [all...]
  /external/android-clat/
dump.h 25 void dump_tcp(const struct tcphdr *tcp, const struct iphdr *ip,
33 void dump_tcp6(const struct tcphdr *tcp, const struct ip6_hdr *ip6,
translate.h 78 int tcp_packet(clat_packet out, clat_packet_index pos, const struct tcphdr *tcp,
83 int tcp_translate(clat_packet out, clat_packet_index pos, const struct tcphdr *tcp,
dump.c 165 void dump_tcp_generic(const struct tcphdr *tcp, const uint8_t *options, size_t options_size, uint32_t temp_checksum, const uint8_t *payload, size_t payload_size) {
168 temp_checksum = ip_checksum_add(temp_checksum, tcp, sizeof(struct tcphdr));
206 void dump_tcp(const struct tcphdr *tcp, const struct iphdr *ip,
216 void dump_tcp6(const struct tcphdr *tcp, const struct ip6_hdr *ip6,
ipv4.c 128 iov_len = tcp_packet(out, pos + 2, (const struct tcphdr *) next_header, old_sum, new_sum,
translate.c 367 int tcp_packet(clat_packet out, clat_packet_index pos, const struct tcphdr *tcp,
372 if(len < sizeof(struct tcphdr)) {
444 int tcp_translate(clat_packet out, clat_packet_index pos, const struct tcphdr *tcp,
447 struct tcphdr *tcp_targ = out[pos].iov_base;
  /bionic/libc/include/netinet/
tcp.h 35 #define tcphdr __kernel_tcphdr macro
37 #undef tcphdr macro
41 struct tcphdr { struct
  /external/linux-kselftest/tools/testing/selftests/bpf/
test_pkt_access.c 29 struct tcphdr *tcp = NULL;
43 tcp = (struct tcphdr *)((void *)(iph) + ihl_len);
51 tcp = (struct tcphdr *)((void *)(ip6h) + ihl_len);
  /external/syslinux/gpxe/src/include/
old_tcp.h 20 struct tcphdr { struct
  /bionic/libc/kernel/uapi/linux/netfilter/
xt_osf.h 63 struct tcphdr tcp;
  /device/linaro/bootloader/edk2/StdLib/Include/netinet/
tcp.h 50 /* Flag definitions for tcphdr.th_flags */
66 struct tcphdr { struct
  /external/iptables/include/linux/netfilter/
xt_osf.h 85 struct tcphdr tcp;
  /external/kernel-headers/original/uapi/linux/netfilter/
xt_osf.h 87 struct tcphdr tcp;
  /external/tcpdump/
tcp.h 41 struct tcphdr { struct
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/netfilter/
xt_osf.h 85 struct tcphdr tcp;
  /bionic/libc/kernel/uapi/linux/
tcp.h 24 struct tcphdr { struct
41 struct tcphdr hdr;
  /external/iproute2/include/netinet/
tcp.h 63 struct tcphdr struct
90 struct tcphdr struct
  /external/iproute2/include/uapi/linux/
tcp.h 25 struct tcphdr { struct
66 struct tcphdr hdr;
  /external/kernel-headers/original/uapi/linux/
tcp.h 25 struct tcphdr { struct
66 struct tcphdr hdr;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/linux/
tcp.h 24 struct tcphdr { struct
65 struct tcphdr hdr;
  /prebuilts/gcc/linux-x86/host/x86_64-linux-glibc2.15-4.8/sysroot/usr/include/netinet/
tcp.h 65 struct tcphdr struct
92 struct tcphdr struct
  /system/netd/server/
WakeupController.cpp 51 sizeof(struct tcphdr) + sizeof(struct ip6_hdr);
56 struct tcphdr header;
57 if (extract(payload, header) < sizeof(struct tcphdr)) {

Completed in 775 milliseconds

1 2