Searched defs:tcphdr (Results 1 – 5 of 5) 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/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 */ 49 u_int8_t th_flags; 58 u_int16_t th_win; /* window */ 59 u_int16_t th_sum; /* checksum */ 60 u_int16_t th_urp; /* urgent pointer */
|
/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/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/kernel-headers/original/linux/ |
D | tcp.h | 23 struct tcphdr { struct 24 __u16 source; 25 __u16 dest; 26 __u32 seq; 27 __u32 ack_seq; 29 __u16 res1:4, 30 doff:4, 31 fin:1, 32 syn:1, 33 rst:1, [all …]
|