/usr/src/kernels/4.18.0-553.157.1.el8_10.x86_64/include/net/netns
NameSizeModeActions
bpf.h5900644editdlrm
can.h11090644editdlrm
conntrack.h30170644editdlrm
core.h3620644editdlrm
dccp.h1850644editdlrm
generic.h11750644editdlrm
hash.h2120644editdlrm
ieee802154_6lowpan.h3990644editdlrm
ipv4.h54910644editdlrm
ipv6.h29630644editdlrm
mib.h10970644editdlrm
mpls.h3710644editdlrm
netfilter.h10480644editdlrm
nftables.h2750644editdlrm
packet.h2950644editdlrm
sctp.h39970644editdlrm
smc.h6040644editdlrm
unix.h2630644editdlrm
xdp.h3310644editdlrm
xfrm.h18800644editdlrm
x_tables.h5070644editdlrm
Edit: /usr/src/kernels/4.18.0-553.157.1.el8_10.x86_64/include/net/netns/x_tables.h (507B)
/* SPDX-License-Identifier: GPL-2.0 */ #ifndef __NETNS_X_TABLES_H #define __NETNS_X_TABLES_H #include #include struct ebt_table; struct netns_xt { struct list_head tables[NFPROTO_NUMPROTO]; bool notrack_deprecated_warning; bool clusterip_deprecated_warning; #if defined(CONFIG_BRIDGE_NF_EBTABLES) || \ defined(CONFIG_BRIDGE_NF_EBTABLES_MODULE) struct ebt_table *broute_table; struct ebt_table *frame_filter; struct ebt_table *frame_nat; #endif }; #endif