Searched defs:tcphdr (Results 1 – 4 of 4) sorted by relevance
/external/iproute2/include/netinet/ |
D | tcp.h | 63 struct tcphdr struct 65 u_int16_t th_sport; /* source port */ 66 u_int16_t th_dport; /* destination port */ 90 struct tcphdr argument 92 u_int16_t source; 93 u_int16_t dest; 94 u_int32_t seq; 95 u_int32_t ack_seq; 97 u_int16_t res1:4; 98 u_int16_t doff:4; [all …]
|
/external/iproute2/include/uapi/linux/ |
D | tcp.h | 25 struct tcphdr { struct 26 __be16 source; 27 __be16 dest; 28 __be32 seq; 29 __be32 ack_seq; 31 __u16 res1:4, 32 doff:4, 33 fin:1, 34 syn:1, 35 rst:1, [all …]
|
/external/tcpdump/ |
D | tcp.h | 41 struct tcphdr { struct 42 uint16_t th_sport; /* source port */ 43 uint16_t th_dport; /* destination port */ 44 tcp_seq th_seq; /* sequence number */ 45 tcp_seq th_ack; /* acknowledgement number */ 46 uint8_t th_offx2; /* data offset, rsvd */ 47 uint8_t th_flags; 48 uint16_t th_win; /* window */ 49 uint16_t th_sum; /* checksum */ 50 uint16_t th_urp; /* urgent pointer */
|
/external/kernel-headers/original/uapi/linux/ |
D | tcp.h | 25 struct tcphdr { struct 26 __be16 source; 27 __be16 dest; 28 __be32 seq; 29 __be32 ack_seq; 31 __u16 res1:4, 32 doff:4, 33 fin:1, 34 syn:1, 35 rst:1, [all …]
|