aya-obj 0.2.1

An eBPF object file parsing library with BTF and relocation support.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! BTF loading, parsing and relocation.

#[allow(clippy::module_inception)]
mod btf;
mod info;
mod relocation;
mod types;

pub use btf::*;
pub use info::*;
pub use relocation::BtfRelocationError;
pub use types::*;