summaryrefslogtreecommitdiffstats
path: root/third_party/rust/nix/src/net/mod.rs
diff options
context:
space:
mode:
Diffstat (limited to 'third_party/rust/nix/src/net/mod.rs')
-rw-r--r--third_party/rust/nix/src/net/mod.rs4
1 files changed, 4 insertions, 0 deletions
diff --git a/third_party/rust/nix/src/net/mod.rs b/third_party/rust/nix/src/net/mod.rs
new file mode 100644
index 0000000000..079fcfde6f
--- /dev/null
+++ b/third_party/rust/nix/src/net/mod.rs
@@ -0,0 +1,4 @@
+//! Functionality involving network interfaces
+// To avoid clashing with the keyword "if", we use "if_" as the module name.
+// The original header is called "net/if.h".
+pub mod if_;