[][src]Struct redbpf::SocketFilter

pub struct SocketFilter { /* fields omitted */ }

Type to work with socket filters.

Implementations

impl SocketFilter[src]

pub fn attach_socket_filter(&mut self, interface: &str) -> Result<RawFd>[src]

Attach the socket filter program.

Attach the socket filter program to the given network interface.

Example

use redbpf::Module;
let mut module = Module::parse(&std::fs::read("file.elf").unwrap()).unwrap();
for sf in module.socket_filters_mut() {
    sf.attach_socket_filter("eth0").unwrap();
}

pub fn name(&self) -> String[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.