#![no_std] #![no_main] #![expect(unused_crate_dependencies, reason = "used in other bins")] use aya_ebpf::{bindings::tcx_action_base::TCX_NEXT, macros::classifier, programs::TcContext}; #[cfg(not(test))] extern crate ebpf_panic; #[classifier] fn tcx_next(_ctx: TcContext) -> i32 { TCX_NEXT }