Struct pnet::packet::tcp::TcpOption
[−]
[src]
pub struct TcpOption { // some fields omitted }
TCP option
Methods
impl TcpOption
[src]
fn nop() -> Self
NOP: This may be used to align option fields on 32-bit boundaries for better performance.
fn timestamp(my: u32, their: u32) -> Self
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.
fn mss(val: u16) -> Self
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.
fn wscale(val: u8) -> Self
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.
fn sack_perm() -> Self
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.
fn selective_ack(acks: &[u32]) -> Self
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
Derived Implementations
impl Clone for TcpOption
[src]
fn clone(&self) -> TcpOption
Returns a copy of the value. Read more
fn clone_from(&mut self, source: &Self)
1.0.0
Performs copy-assignment from source
. Read more