1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
// Readme is run-tested as part of netlink-socket crate
// ```fish
// cat proto \
// | while read i
// echo
// echo "#[cfg(any(doc, feature = \"$i\"))]"
// if string match -qr ".*-.*" -- $i
// echo "#[path = \"$i/mod.rs\"]"
// end
// echo "pub mod $(string replace - _ -- $i);"
// end
// ```
// #[cfg(any(doc, feature = "devlink"))]
// pub mod devlink;
//
// #[cfg(any(doc, feature = "dpll"))]
// pub mod dpll;
//
// #[cfg(any(doc, feature = "ethtool"))]
// pub mod ethtool;
//
// #[cfg(any(doc, feature = "fou"))]
// pub mod fou;
//
// #[cfg(any(doc, feature = "handshake"))]
// pub mod handshake;
//
// #[cfg(any(doc, feature = "lockd"))]
// pub mod lockd;
//
// #[cfg(any(doc, feature = "mptcp_pm"))]
// pub mod mptcp_pm;
//
// #[cfg(any(doc, feature = "net-shaper"))]
// #[path = "net-shaper/mod.rs"]
// pub mod net_shaper;
//
// #[cfg(any(doc, feature = "netdev"))]
// pub mod netdev;
//
// #[cfg(any(doc, feature = "nfsd"))]
// pub mod nfsd;
//
// #[cfg(any(doc, feature = "nl80211"))]
// pub mod nl80211;
// #[cfg(any(doc, feature = "ovpn"))]
// pub mod ovpn;
//
// #[cfg(any(doc, feature = "ovs_datapath"))]
// pub mod ovs_datapath;
//
// #[cfg(any(doc, feature = "ovs_flow"))]
// pub mod ovs_flow;
//
// #[cfg(any(doc, feature = "ovs_vport"))]
// pub mod ovs_vport;
// #[cfg(any(doc, feature = "tcp_metrics"))]
// pub mod tcp_metrics;
//
// #[cfg(any(doc, feature = "team"))]
// pub mod team;