mirror of https://github.com/aya-rs/aya
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
598 B
Rust
21 lines
598 B
Rust
//! Cgroup socket option programs.
|
|
use crate::generated::bpf_attach_type;
|
|
|
|
/// Defines where to attach a `CgroupSockopt` program.
|
|
#[derive(Copy, Clone, Debug)]
|
|
pub enum CgroupSockoptAttachType {
|
|
/// Attach to GetSockopt.
|
|
Get,
|
|
/// Attach to SetSockopt.
|
|
Set,
|
|
}
|
|
|
|
impl From<CgroupSockoptAttachType> for bpf_attach_type {
|
|
fn from(s: CgroupSockoptAttachType) -> bpf_attach_type {
|
|
match s {
|
|
CgroupSockoptAttachType::Get => bpf_attach_type::BPF_CGROUP_GETSOCKOPT,
|
|
CgroupSockoptAttachType::Set => bpf_attach_type::BPF_CGROUP_SETSOCKOPT,
|
|
}
|
|
}
|
|
}
|