libc

Struct tcp_info

Source
#[repr(C)]
pub struct tcp_info {
Show 31 fields pub tcpi_state: u8, pub tcpi_ca_state: u8, pub tcpi_retransmits: u8, pub tcpi_probes: u8, pub tcpi_backoff: u8, pub tcpi_options: u8, pub tcpi_snd_rcv_wscale: u8, pub tcpi_rto: u32, pub tcpi_ato: u32, pub tcpi_snd_mss: u32, pub tcpi_rcv_mss: u32, pub tcpi_unacked: u32, pub tcpi_sacked: u32, pub tcpi_lost: u32, pub tcpi_retrans: u32, pub tcpi_fackets: u32, pub tcpi_last_data_sent: u32, pub tcpi_last_ack_sent: u32, pub tcpi_last_data_recv: u32, pub tcpi_last_ack_recv: u32, pub tcpi_pmtu: u32, pub tcpi_rcv_ssthresh: u32, pub tcpi_rtt: u32, pub tcpi_rttvar: u32, pub tcpi_snd_ssthresh: u32, pub tcpi_snd_cwnd: u32, pub tcpi_advmss: u32, pub tcpi_reordering: u32, pub tcpi_rcv_rtt: u32, pub tcpi_rcv_space: u32, pub tcpi_total_retrans: u32,
}

Fields§

§tcpi_state: u8§tcpi_ca_state: u8§tcpi_retransmits: u8§tcpi_probes: u8§tcpi_backoff: u8§tcpi_options: u8§tcpi_snd_rcv_wscale: u8

This contains the bitfields tcpi_snd_wscale and tcpi_rcv_wscale. Each is 4 bits.

§tcpi_rto: u32§tcpi_ato: u32§tcpi_snd_mss: u32§tcpi_rcv_mss: u32§tcpi_unacked: u32§tcpi_sacked: u32§tcpi_lost: u32§tcpi_retrans: u32§tcpi_fackets: u32§tcpi_last_data_sent: u32§tcpi_last_ack_sent: u32§tcpi_last_data_recv: u32§tcpi_last_ack_recv: u32§tcpi_pmtu: u32§tcpi_rcv_ssthresh: u32§tcpi_rtt: u32§tcpi_rttvar: u32§tcpi_snd_ssthresh: u32§tcpi_snd_cwnd: u32§tcpi_advmss: u32§tcpi_reordering: u32§tcpi_rcv_rtt: u32§tcpi_rcv_space: u32§tcpi_total_retrans: u32

Trait Implementations§

Source§

impl Clone for tcp_info

Source§

fn clone(&self) -> tcp_info

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Copy for tcp_info

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dst: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dst. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.

Layout§

Note: Most layout information is completely unstable and may even differ between compilations. The only exception is types with certain repr(...) attributes. Please see the Rust Reference's “Type Layout” chapter for details on type layout guarantees.

Size: 104 bytes