00001 /* 00002 This structure is used by lib/interfaces.c to return the list of network 00003 interfaces on the machine 00004 */ 00005 00006 #define MAX_INTERFACES 128 00007 00008 struct iface_struct { 00009 char name[16]; 00010 struct in_addr ip; 00011 struct in_addr netmask; 00012 };
1.4.7