#[repr(C)]
pub struct bpf_sock_ops {
Show 41 fields pub op: __u32, pub __bindgen_anon_1: bpf_sock_ops__bindgen_ty_1, pub family: __u32, pub remote_ip4: __u32, pub local_ip4: __u32, pub remote_ip6: [__u32; 4], pub local_ip6: [__u32; 4], pub remote_port: __u32, pub local_port: __u32, pub is_fullsock: __u32, pub snd_cwnd: __u32, pub srtt_us: __u32, pub bpf_sock_ops_cb_flags: __u32, pub state: __u32, pub rtt_min: __u32, pub snd_ssthresh: __u32, pub rcv_nxt: __u32, pub snd_nxt: __u32, pub snd_una: __u32, pub mss_cache: __u32, pub ecn_flags: __u32, pub rate_delivered: __u32, pub rate_interval_us: __u32, pub packets_out: __u32, pub retrans_out: __u32, pub total_retrans: __u32, pub segs_in: __u32, pub data_segs_in: __u32, pub segs_out: __u32, pub data_segs_out: __u32, pub lost_out: __u32, pub sacked_out: __u32, pub sk_txhash: __u32, pub bytes_received: __u64, pub bytes_acked: __u64, pub __bindgen_anon_2: bpf_sock_ops__bindgen_ty_2, pub __bindgen_anon_3: bpf_sock_ops__bindgen_ty_3, pub __bindgen_anon_4: bpf_sock_ops__bindgen_ty_4, pub skb_len: __u32, pub skb_tcp_flags: __u32, pub skb_hwtstamp: __u64,
}

Fields§

§op: __u32§__bindgen_anon_1: bpf_sock_ops__bindgen_ty_1§family: __u32§remote_ip4: __u32§local_ip4: __u32§remote_ip6: [__u32; 4]§local_ip6: [__u32; 4]§remote_port: __u32§local_port: __u32§is_fullsock: __u32§snd_cwnd: __u32§srtt_us: __u32§bpf_sock_ops_cb_flags: __u32§state: __u32§rtt_min: __u32§snd_ssthresh: __u32§rcv_nxt: __u32§snd_nxt: __u32§snd_una: __u32§mss_cache: __u32§ecn_flags: __u32§rate_delivered: __u32§rate_interval_us: __u32§packets_out: __u32§retrans_out: __u32§total_retrans: __u32§segs_in: __u32§data_segs_in: __u32§segs_out: __u32§data_segs_out: __u32§lost_out: __u32§sacked_out: __u32§sk_txhash: __u32§bytes_received: __u64§bytes_acked: __u64§__bindgen_anon_2: bpf_sock_ops__bindgen_ty_2§__bindgen_anon_3: bpf_sock_ops__bindgen_ty_3§__bindgen_anon_4: bpf_sock_ops__bindgen_ty_4§skb_len: __u32§skb_tcp_flags: __u32§skb_hwtstamp: __u64

Trait Implementations§

source§

impl Clone for bpf_sock_ops

source§

fn clone(&self) -> bpf_sock_ops

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 Default for bpf_sock_ops

source§

fn default() -> Self

Returns the “default value” for a type. Read more
source§

impl Copy for bpf_sock_ops

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> 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> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

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

§

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>,

§

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.