This commit was manufactured by cvs2svn to create branch 'SAMBA_3_0'.(This used to...
[jra/samba/.git] / source3 / include / interfaces.h
1 /* 
2    This structure is used by lib/interfaces.c to return the list of network
3    interfaces on the machine
4 */
5
6 #define MAX_INTERFACES 128
7
8 struct iface_struct {
9         char name[16];
10         struct in_addr ip;
11         struct in_addr netmask;
12 };