|
|
|
@ -80,6 +80,36 @@ where
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#[repr(C)]
|
|
|
|
|
#[derive(Default)]
|
|
|
|
|
pub struct __IncompleteArrayField<T>(::std::marker::PhantomData<T>, [T; 0]);
|
|
|
|
|
impl<T> __IncompleteArrayField<T> {
|
|
|
|
|
#[inline]
|
|
|
|
|
pub const fn new() -> Self {
|
|
|
|
|
__IncompleteArrayField(::std::marker::PhantomData, [])
|
|
|
|
|
}
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn as_ptr(&self) -> *const T {
|
|
|
|
|
self as *const _ as *const T
|
|
|
|
|
}
|
|
|
|
|
#[inline]
|
|
|
|
|
pub fn as_mut_ptr(&mut self) -> *mut T {
|
|
|
|
|
self as *mut _ as *mut T
|
|
|
|
|
}
|
|
|
|
|
#[inline]
|
|
|
|
|
pub unsafe fn as_slice(&self, len: usize) -> &[T] {
|
|
|
|
|
::std::slice::from_raw_parts(self.as_ptr(), len)
|
|
|
|
|
}
|
|
|
|
|
#[inline]
|
|
|
|
|
pub unsafe fn as_mut_slice(&mut self, len: usize) -> &mut [T] {
|
|
|
|
|
::std::slice::from_raw_parts_mut(self.as_mut_ptr(), len)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
impl<T> ::std::fmt::Debug for __IncompleteArrayField<T> {
|
|
|
|
|
fn fmt(&self, fmt: &mut ::std::fmt::Formatter<'_>) -> ::std::fmt::Result {
|
|
|
|
|
fmt.write_str("__IncompleteArrayField")
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
pub const BPF_LD: u32 = 0;
|
|
|
|
|
pub const BPF_LDX: u32 = 1;
|
|
|
|
|
pub const BPF_ST: u32 = 2;
|
|
|
|
@ -193,6 +223,12 @@ impl bpf_insn {
|
|
|
|
|
__bindgen_bitfield_unit
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
#[repr(C)]
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
|
pub struct bpf_lpm_trie_key {
|
|
|
|
|
pub prefixlen: __u32,
|
|
|
|
|
pub data: __IncompleteArrayField<__u8>,
|
|
|
|
|
}
|
|
|
|
|
impl bpf_cmd {
|
|
|
|
|
pub const BPF_PROG_RUN: bpf_cmd = bpf_cmd::BPF_PROG_TEST_RUN;
|
|
|
|
|
}
|
|
|
|
|