10 #include <bpf/libbpf.h>
16 static int libbpf_print_fn(
enum libbpf_print_level level,
const char *format,
18 if (level == LIBBPF_DEBUG && !
verbose)
20 return vfprintf(stderr, format, args);
24 static std::string get_current_time(
void) {
31 strftime(ts,
sizeof(ts),
"%H:%M:%S", tm);
32 return std::string(ts);