decode/tcp: minor struct layout optimization

Part of effort to make Packet more compact.

Ticket: #6938.
pull/10971/head
Victor Julien 11 months ago committed by Victor Julien
parent 7be0678c3a
commit 81c4b10dc8

@ -160,10 +160,10 @@ typedef struct TCPVars_
bool tfo_set;
uint8_t wscale_set : 1;
uint8_t wscale : 4;
uint16_t mss; /**< MSS value in host byte order */
uint16_t mss; /**< MSS value in host byte order */
uint16_t stream_pkt_flags;
uint32_t ts_val; /* host-order */
uint32_t ts_ecr; /* host-order */
uint16_t stream_pkt_flags;
TCPOpt sack;
} TCPVars;

Loading…
Cancel
Save