133965Sjdp// SPDX-License-Identifier: GPL-2.0
2218822Sdim
3218822Sdim#include "bpf_tracing_net.h"
433965Sjdp#include <bpf/bpf_tracing.h>
533965Sjdp
633965Sjdpchar _license[] SEC("license") = "X";
733965Sjdp
833965SjdpSEC("struct_ops")
933965Sjdpvoid BPF_PROG(nogpltcp_init, struct sock *sk)
1033965Sjdp{
1133965Sjdp}
1233965Sjdp
1333965SjdpSEC(".struct_ops")
1433965Sjdpstruct tcp_congestion_ops bpf_nogpltcp = {
1533965Sjdp	.init           = (void *)nogpltcp_init,
1633965Sjdp	.name           = "bpf_nogpltcp",
1733965Sjdp};
1833965Sjdp