1 /* SPDX-License-Identifier: (LGPL-2.1 OR BSD-2-Clause) */
2 #ifndef __BPF_TRACING_NET_H__
3 #define __BPF_TRACING_NET_H__
4 
5 #define IFNAMSIZ		16
6 
7 #define RTF_GATEWAY		0x0002
8 
9 #define fib_nh_dev		nh_common.nhc_dev
10 #define fib_nh_gw_family	nh_common.nhc_gw_family
11 #define fib_nh_gw6		nh_common.nhc_gw.ipv6
12 
13 #define sk_rmem_alloc		sk_backlog.rmem_alloc
14 #define sk_refcnt		__sk_common.skc_refcnt
15 
16 #endif
17