Skip to content

Instantly share code, notes, and snippets.

@mattnite
Last active October 3, 2020 18:11
Show Gist options
  • Save mattnite/74af9ad882338adf121bbe7fafac3b3c to your computer and use it in GitHub Desktop.
Save mattnite/74af9ad882338adf121bbe7fafac3b3c to your computer and use it in GitHub Desktop.
Zig BPF Insn and Map Definition
pub const Insn = packed struct {
code: u8,
dst: u4,
src: u4,
off: i16,
imm: i32,
};
pub const MapDef = extern struct {
type: u32,
key_size: u32,
value_size: u32,
max_entries: u32,
map_flags: u32,
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment