BPF_PROG_TYPE_SOCK_OPS is a BPF program type which is called when a set of actions is performed on a TCP socket.
Right now, I am using it to mark TCP sockets that are trying to connect with an fwmark.
I want to do the same for UDP sockets, but unfortunately the BPF_PROG_TYPE_SOCK_OPS probe is not called on UDP packets.
Is there an equivalent?