Struct pnet_packet::tcp::TcpOption [−][src]
pub struct TcpOption { /* fields omitted */ }
Expand description
A TCP option.
Implementations
NOP: This may be used to align option fields on 32-bit boundaries for better performance.
Timestamp: TCP timestamps, defined in RFC 1323, can help TCP determine in which order packets were sent. TCP timestamps are not normally aligned to the system clock and start at some random value.
MSS: The maximum segment size (MSS) is the largest amount of data, specified in bytes, that TCP is willing to receive in a single segment.
Window scale: The TCP window scale option, as defined in RFC 1323, is an option used to increase the maximum window size from 65,535 bytes to 1 gigabyte.
Selective acknowledgment (SACK) option, defined in RFC 2018 allows the receiver to acknowledge discontinuous blocks of packets which were received correctly. This options enables use of SACK during negotiation.
Selective acknowledgment (SACK) option, defined in RFC 2018 allows the receiver to acknowledge discontinuous blocks of packets which were received correctly. The acknowledgement can specify a number of SACK blocks, where each SACK block is conveyed by the starting and ending sequence numbers of a contiguous range that the receiver correctly received.
Trait Implementations
Auto Trait Implementations
impl RefUnwindSafe for TcpOption
impl UnwindSafe for TcpOption
Blanket Implementations
Mutably borrows from an owned value. Read more