Home
last modified time | relevance | path

Searched defs:tcphdr (Results 1 – 4 of 4) sorted by relevance

/external/iproute2/include/netinet/
Dtcp.h63 struct tcphdr struct
65 u_int16_t th_sport; /* source port */
66 u_int16_t th_dport; /* destination port */
90 struct tcphdr struct
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/kernel-headers/original/uapi/linux/
Dtcp.h24 struct tcphdr { struct
25 __be16 source;
26 __be16 dest;
27 __be32 seq;
28 __be32 ack_seq;
30 __u16 res1:4,
31 doff:4,
32 fin:1,
33 syn:1,
34 rst:1,
[all …]
/external/iproute2/include/linux/
Dtcp.h24 struct tcphdr { struct
25 __be16 source;
26 __be16 dest;
27 __be32 seq;
28 __be32 ack_seq;
30 __u16 res1:4,
31 doff:4,
32 fin:1,
33 syn:1,
34 rst:1,
[all …]
/external/tcpdump/
Dtcp.h41 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 */