#[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
impl Clone for bpf_sock_ops
Source§fn clone(&self) -> bpf_sock_ops
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)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreimpl Copy for bpf_sock_ops
Auto Trait Implementations§
impl Freeze for bpf_sock_ops
impl RefUnwindSafe for bpf_sock_ops
impl !Send for bpf_sock_ops
impl !Sync for bpf_sock_ops
impl Unpin for bpf_sock_ops
impl UnwindSafe for bpf_sock_ops
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more