blob: ae5905e682e73925a5cd4a53635ba54602b1ef47 (
plain)
1
2
3
4
5
6
7
8
9
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;
};
|