diff options
author | Andrew Tridgell <tridge@samba.org> | 1999-12-17 01:44:30 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 1999-12-17 01:44:30 +0000 |
commit | a3d7ec0c9d06f18e656da354e2fec57aaf395fc5 (patch) | |
tree | 9b0d9c81d11cc33db90b5f7ef546a32df98abe78 | |
parent | 4e1458b8c161f87339eba251c2179946d3b0405a (diff) | |
download | samba-a3d7ec0c9d06f18e656da354e2fec57aaf395fc5.tar.gz samba-a3d7ec0c9d06f18e656da354e2fec57aaf395fc5.tar.xz samba-a3d7ec0c9d06f18e656da354e2fec57aaf395fc5.zip |
interfaces.h from 2.0.6
-rw-r--r-- | source/include/interfaces.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/source/include/interfaces.h b/source/include/interfaces.h new file mode 100644 index 00000000000..ae5905e682e --- /dev/null +++ b/source/include/interfaces.h @@ -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; +}; |