mirror of
https://github.com/samba-team/samba.git
synced 2025-01-10 01:18:15 +03:00
11 lines
199 B
C
11 lines
199 B
C
/*
|
|
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;
|
|
};
|