#include <linux/bpf.h>
#include <bpf/bpf_helpers.h>
SEC("tracepoint/syscalls/sys_enter_connect")
int trace_sys_connect(void *ctx) { return 0; }
char _license[] SEC("license") = "GPL";