Struct aya::programs::SkSkb[][src]

pub struct SkSkb { /* fields omitted */ }
Expand description

A program used to intercept ingress socket buffers.

SkSkb programs are attached to socket maps, and can be used to inspect, redirect or filter incoming packet. See also SockMap and SockHash.

Examples

use std::convert::{TryFrom, TryInto};
use aya::maps::SockMap;
use aya::programs::SkSkb;

let intercept_ingress = SockMap::try_from(bpf.map_mut("INTERCEPT_INGRESS")?)?;
let prog: &mut SkSkb = bpf.program_mut("intercept_ingress_packet")?.try_into()?;
prog.load()?;
prog.attach(&intercept_ingress)?;

Implementations

Loads the program inside the kernel.

See also Program::load.

Returns the name of the program.

Attaches the program to the given socket map.

Trait Implementations

Formats the value using the given formatter. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.