interfaces.h from 2.0.6
authorAndrew Tridgell <tridge@samba.org>
Fri, 17 Dec 1999 01:44:30 +0000 (01:44 +0000)
committerAndrew Tridgell <tridge@samba.org>
Fri, 17 Dec 1999 01:44:30 +0000 (01:44 +0000)
source/include/interfaces.h [new file with mode: 0644]

diff --git a/source/include/interfaces.h b/source/include/interfaces.h
new file mode 100644 (file)
index 0000000..ae5905e
--- /dev/null
@@ -0,0 +1,10 @@
+/* 
+   This structure is used by lib/interfaces.c to return the list of network
+   interfaces on the machine
+*/
+
+struct iface_struct {
+       char name[16];
+       struct in_addr ip;
+       struct in_addr netmask;
+};