mirror of
https://github.com/samba-team/samba.git
synced 2025-01-04 05:18:06 +03:00
20aba767ea
(This used to be commit a3d7ec0c9d
)
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;
|
|
};
|