Struct aya::programs::Xdp[][src]

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

An XDP program.

eXpress Data Path (XDP) programs can be attached to the very early stages of network processing, where they can apply custom packet processing logic. When supported by the underlying network driver, XDP programs can execute directly on network cards, greatly reducing CPU load.

Examples

use aya::{Bpf, programs::{Xdp, XdpFlags}};
use std::convert::TryInto;

let program: &mut Xdp = bpf.program_mut("intercept_packets")?.try_into()?;
program.attach("eth0", XdpFlags::default())?;

Implementations

Loads the program inside the kernel.

See also Program::load.

Returns the name of the program.

Attaches the program to the given interface.

Errors

If the given interface does not exist ProgramError::UnknownInterface is returned.

When attaching fails, ProgramError::SyscallError is returned for kernels >= 5.9.0, and instead XdpError::NetlinkError is returned for older kernels.

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.