File: interfaces.h

package info (click to toggle)
gnomba 0.6.2-9
  • links: PTS
  • area: main
  • in suites: woody
  • size: 3,144 kB
  • ctags: 6,855
  • sloc: ansic: 31,481; sh: 488; makefile: 276; sed: 93
file content (10 lines) | stat: -rw-r--r-- 199 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
/* 
   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;
};