Searched defs:tcphdr (Results 1 – 6 of 6) 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/chromium_org/native_client_sdk/src/libraries/third_party/newlib-extras/netinet/ |
D | tcp.h | 80 struct tcphdr { struct 81 u_short th_sport; /* source port */ 82 u_short th_dport; /* destination port */ 83 tcp_seq th_seq; /* sequence number */ 84 tcp_seq th_ack; /* acknowledgement number */ 86 u_int th_x2:4, /* (unused) */ 87 th_off:4; /* data offset */ 90 u_int th_off:4, /* data offset */ 91 th_x2:4; /* (unused) */ 93 u_char th_flags; [all …]
|
/external/kernel-headers/original/uapi/linux/ |
D | tcp.h | 24 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/qemu/slirp/ |
D | tcp.h | 50 struct tcphdr { struct 51 u_int16_t th_sport; /* source port */ 52 u_int16_t th_dport; /* destination port */ 53 tcp_seq th_seq; /* sequence number */ 54 tcp_seq th_ack; /* acknowledgement number */ 56 u_int th_off:4, /* data offset */ 57 th_x2:4; /* (unused) */ 59 u_int th_x2:4, /* (unused) */ 60 th_off:4; /* data offset */ 62 u_int8_t th_flags; [all …]
|
/external/qemu/slirp-android/ |
D | tcp.h | 56 struct tcphdr { struct 57 port_t th_sport; /* source port */ 58 port_t th_dport; /* destination port */ 59 tcp_seq th_seq; /* sequence number */ 60 tcp_seq th_ack; /* acknowledgement number */ 62 u_int th_off:4, /* data offset */ 63 th_x2:4; /* (unused) */ 65 u_int th_x2:4, /* (unused) */ 66 th_off:4; /* data offset */ 68 u_int8_t th_flags; [all …]
|
/external/tcpdump/ |
D | tcp.h | 42 struct tcphdr { struct 43 u_int16_t th_sport; /* source port */ 44 u_int16_t th_dport; /* destination port */ 45 tcp_seq th_seq; /* sequence number */ 46 tcp_seq th_ack; /* acknowledgement number */ 47 u_int8_t th_offx2; /* data offset, rsvd */ 48 u_int8_t th_flags; 49 u_int16_t th_win; /* window */ 50 u_int16_t th_sum; /* checksum */ 51 u_int16_t th_urp; /* urgent pointer */
|