72 lines
1.7 KiB
C
Executable File
72 lines
1.7 KiB
C
Executable File
/* Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T */
|
|
/* All Rights Reserved */
|
|
|
|
/* THIS IS UNPUBLISHED PROPRIETARY SOURCE CODE OF AT&T */
|
|
/* The copyright notice above does not evidence any */
|
|
/* actual or intended publication of such source code. */
|
|
|
|
#ident "@(#)htable.h 1.2 90/02/03 SMI" /* SVr4.0 1.1 */
|
|
|
|
/*
|
|
* +++++++++++++++++++++++++++++++++++++++++++++++++++++++++
|
|
* PROPRIETARY NOTICE (Combined)
|
|
*
|
|
* This source code is unpublished proprietary information
|
|
* constituting, or derived under license from AT&T's UNIX(r) System V.
|
|
* In addition, portions of such source code were derived from Berkeley
|
|
* 4.3 BSD under license from the Regents of the University of
|
|
* California.
|
|
*
|
|
*
|
|
*
|
|
* Copyright Notice
|
|
*
|
|
* Notice of copyright on this source code product does not indicate
|
|
* publication.
|
|
*
|
|
* (c) 1986,1987,1988.1989 Sun Microsystems, Inc
|
|
* (c) 1983,1984,1985,1986,1987,1988,1989 AT&T.
|
|
* All rights reserved.
|
|
*
|
|
*/
|
|
|
|
|
|
#include <sys/types.h>
|
|
#include <netinet/in.h>
|
|
|
|
/*
|
|
* common definitions for htable
|
|
*/
|
|
|
|
struct addr {
|
|
struct in_addr addr_val;
|
|
struct addr *addr_link;
|
|
};
|
|
|
|
struct name {
|
|
char *name_val;
|
|
struct name *name_link;
|
|
};
|
|
|
|
struct gateway {
|
|
struct gateway *g_link;
|
|
struct gateway *g_dst; /* connected gateway if metric > 0 */
|
|
struct gateway *g_firstent; /* first entry for this gateway */
|
|
struct name *g_name;
|
|
int g_net;
|
|
struct in_addr g_addr; /* address on g_net */
|
|
int g_metric; /* hops to this net */
|
|
};
|
|
|
|
#define NOADDR ((struct addr *)0)
|
|
#define NONAME ((struct name *)0)
|
|
|
|
#define KW_NET 1
|
|
#define KW_GATEWAY 2
|
|
#define KW_HOST 3
|
|
|
|
struct name *newname();
|
|
char *malloc();
|
|
|
|
char *infile; /* Input file name */
|