• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/router/samba-3.0.25b/source/include/
1/*
2   This structure is used by lib/interfaces.c to return the list of network
3   interfaces on the machine
4*/
5
6#define MAX_INTERFACES 128
7
8struct iface_struct {
9	char name[16];
10	struct in_addr ip;
11	struct in_addr netmask;
12};
13