mirror of
https://github.com/samba-team/samba.git
synced 2025-01-15 23:24:37 +03:00
bd8e916cb5
(This used to be commit c60aa6c06f376684b6d6d9a2c14305ca9f4657ef)
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;
|
|
};
|