From 20aba767ea2955c2849bb82bfe42ca231a74c4a1 Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Fri, 17 Dec 1999 01:44:30 +0000 Subject: interfaces.h from 2.0.6 (This used to be commit a3d7ec0c9d06f18e656da354e2fec57aaf395fc5) --- source3/include/interfaces.h | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 source3/include/interfaces.h (limited to 'source3/include/interfaces.h') diff --git a/source3/include/interfaces.h b/source3/include/interfaces.h new file mode 100644 index 0000000000..ae5905e682 --- /dev/null +++ b/source3/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; +}; -- cgit