Searched defs:tcphdr (Results 1 – 3 of 3) sorted by relevance
52 struct tcphdr { struct53 u_short th_sport; /* source port */54 u_short th_dport; /* destination port */55 tcp_seq th_seq; /* sequence number */56 tcp_seq th_ack; /* acknowledgement number */58 u_int th_x2:4, /* (unused) */59 th_off:4; /* data offset */61 u_int th_off:4, /* data offset */62 th_x2:4; /* (unused) */66 u_char th_flags;[all …]
40 struct tcphdr { struct41 nd_uint16_t th_sport; /* source port */42 nd_uint16_t th_dport; /* destination port */43 nd_uint32_t th_seq; /* sequence number */44 nd_uint32_t th_ack; /* acknowledgement number */45 nd_uint8_t th_offx2; /* data offset, rsvd */46 nd_uint8_t th_flags;47 nd_uint16_t th_win; /* window */48 nd_uint16_t th_sum; /* checksum */49 nd_uint16_t th_urp; /* urgent pointer */
625 struct tcphdr* tcphdr; in FormatPacket() local