1/*
2 * $Id: gate.h,v 1.2 2001-06-25 20:13:45 rufustfirefly Exp $
3 *
4 * Copyright (c) 1990,1993 Regents of The University of Michigan.
5 * All Rights Reserved. See COPYRIGHT.
6 */
7
8struct gate {
9    struct gate		*g_next,
10			*g_prev;
11    int			g_state;
12    struct interface	*g_iface;
13    struct rtmptab	*g_rt;
14    struct sockaddr_at	g_sat;
15};
16