File: parse_ip.h

package info (click to toggle)
smb-nat 10-2
  • links: PTS
  • area: main
  • in suites: hamm, potato, slink
  • size: 480 kB
  • ctags: 1,520
  • sloc: ansic: 9,631; makefile: 54
file content (10 lines) | stat: -rw-r--r-- 179 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
#include <sys/types.h>

/*
 * Used for storing the list of IP addresses returned and used by
 * the parse_ip function.
 */
struct ipstr {
   char *name;
   struct ipstr *next;
};