File: parse_ip.h

package info (click to toggle)
nat 1%3A1.0-7
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 1,056 kB
  • sloc: ansic: 9,779; makefile: 32
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;
};