-
Notifications
You must be signed in to change notification settings - Fork 306
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dave Tucker <[email protected]>
- Loading branch information
1 parent
8c79b71
commit d0c2443
Showing
11 changed files
with
8,863 additions
and
8,860 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
pub mod aya_ebpf_cty | ||
pub type aya_ebpf_cty::c_char = aya_ebpf_cty::c_schar | ||
pub type aya_ebpf_cty::c_double = f64 | ||
pub type aya_ebpf_cty::c_float = f32 | ||
pub type aya_ebpf_cty::c_int = i32 | ||
pub type aya_ebpf_cty::c_long = i64 | ||
pub type aya_ebpf_cty::c_longlong = i64 | ||
pub type aya_ebpf_cty::c_schar = i8 | ||
pub type aya_ebpf_cty::c_short = i16 | ||
pub type aya_ebpf_cty::c_uchar = u8 | ||
pub type aya_ebpf_cty::c_uint = u32 | ||
pub type aya_ebpf_cty::c_ulong = u64 | ||
pub type aya_ebpf_cty::c_ulonglong = u64 | ||
pub type aya_ebpf_cty::c_ushort = u16 | ||
pub type aya_ebpf_cty::c_void = core::ffi::c_void | ||
pub type aya_ebpf_cty::int16_t = i16 | ||
pub type aya_ebpf_cty::int32_t = i32 | ||
pub type aya_ebpf_cty::int64_t = i64 | ||
pub type aya_ebpf_cty::int8_t = i8 | ||
pub type aya_ebpf_cty::intmax_t = i64 | ||
pub type aya_ebpf_cty::intptr_t = isize | ||
pub type aya_ebpf_cty::ptrdiff_t = isize | ||
pub type aya_ebpf_cty::size_t = usize | ||
pub type aya_ebpf_cty::ssize_t = isize | ||
pub type aya_ebpf_cty::uint16_t = u16 | ||
pub type aya_ebpf_cty::uint32_t = u32 | ||
pub type aya_ebpf_cty::uint64_t = u64 | ||
pub type aya_ebpf_cty::uint8_t = u8 | ||
pub type aya_ebpf_cty::uintmax_t = u64 | ||
pub type aya_ebpf_cty::uintptr_t = usize |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
pub mod aya_ebpf_macros | ||
pub proc macro aya_ebpf_macros::#[btf_tracepoint] | ||
pub proc macro aya_ebpf_macros::#[cgroup_device] | ||
pub proc macro aya_ebpf_macros::#[cgroup_skb] | ||
pub proc macro aya_ebpf_macros::#[cgroup_sock] | ||
pub proc macro aya_ebpf_macros::#[cgroup_sock_addr] | ||
pub proc macro aya_ebpf_macros::#[cgroup_sockopt] | ||
pub proc macro aya_ebpf_macros::#[cgroup_sysctl] | ||
pub proc macro aya_ebpf_macros::#[classifier] | ||
pub proc macro aya_ebpf_macros::#[fentry] | ||
pub proc macro aya_ebpf_macros::#[fexit] | ||
pub proc macro aya_ebpf_macros::#[kprobe] | ||
pub proc macro aya_ebpf_macros::#[kretprobe] | ||
pub proc macro aya_ebpf_macros::#[lsm] | ||
pub proc macro aya_ebpf_macros::#[map] | ||
pub proc macro aya_ebpf_macros::#[perf_event] | ||
pub proc macro aya_ebpf_macros::#[raw_tracepoint] | ||
pub proc macro aya_ebpf_macros::#[sk_lookup] | ||
pub proc macro aya_ebpf_macros::#[sk_msg] | ||
pub proc macro aya_ebpf_macros::#[sock_ops] | ||
pub proc macro aya_ebpf_macros::#[socket_filter] | ||
pub proc macro aya_ebpf_macros::#[stream_parser] | ||
pub proc macro aya_ebpf_macros::#[stream_verdict] | ||
pub proc macro aya_ebpf_macros::#[tracepoint] | ||
pub proc macro aya_ebpf_macros::#[uprobe] | ||
pub proc macro aya_ebpf_macros::#[uretprobe] | ||
pub proc macro aya_ebpf_macros::#[xdp] |
Oops, something went wrong.