# | Line 63 | Line 63 | struct tcphdr { | |
---|---|---|
63 | tcp_seq th_seq; /* sequence number */ | |
64 | tcp_seq th_ack; /* acknowledgement number */ | |
65 | #ifdef WORDS_BIGENDIAN | |
66 | < | u_int th_off:4, /* data offset */ |
66 | > | u_char th_off:4, /* data offset */ |
67 | th_x2:4; /* (unused) */ | |
68 | #else | |
69 | < | u_int th_x2:4, /* (unused) */ |
69 | > | u_char th_x2:4, /* (unused) */ |
70 | th_off:4; /* data offset */ | |
71 | #endif | |
72 | u_int8_t th_flags; |
– | Removed lines |
+ | Added lines |
< | Changed lines |
> | Changed lines |