mirror of
https://github.com/samba-team/samba.git
synced 2024-12-25 23:21:54 +03:00
bd8e916cb5
(This used to be commit c60aa6c06f
)
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;
|
|
};
|