mirror of
https://github.com/samba-team/samba.git
synced 2024-12-28 07:21:54 +03:00
ef2e26c91b
(This used to be commit b0510b5428
)
13 lines
227 B
C
13 lines
227 B
C
/*
|
|
This structure is used by lib/interfaces.c to return the list of network
|
|
interfaces on the machine
|
|
*/
|
|
|
|
#define MAX_INTERFACES 128
|
|
|
|
struct iface_struct {
|
|
char name[16];
|
|
struct in_addr ip;
|
|
struct in_addr netmask;
|
|
};
|