1100784Sfenner/*
2100784Sfenner * Copyright (c) 1997
3100784Sfenner *	The Regents of the University of California.  All rights reserved.
4100784Sfenner *
5100784Sfenner * Redistribution and use in source and binary forms, with or without
6100784Sfenner * modification, are permitted provided that: (1) source code distributions
7100784Sfenner * retain the above copyright notice and this paragraph in its entirety, (2)
8100784Sfenner * distributions including binary code include the above copyright notice and
9100784Sfenner * this paragraph in its entirety in the documentation or other materials
10100784Sfenner * provided with the distribution, and (3) all advertising materials mentioning
11100784Sfenner * features or use of this software display the following acknowledgement:
12100784Sfenner * ``This product includes software developed by the University of California,
13100784Sfenner * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
14100784Sfenner * the University nor the names of its contributors may be used to endorse
15100784Sfenner * or promote products derived from this software without specific prior
16100784Sfenner * written permission.
17100784Sfenner * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
18100784Sfenner * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
19100784Sfenner * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
20100784Sfenner *
21100784Sfenner * @(#) $Header: traceroute.h,v 1.1 97/01/04 19:33:33 leres Locked $ (LBL)
22100784Sfenner */
23100784Sfenner
24100784Sfennerstruct ifaddrlist {
25100784Sfenner	u_int32_t addr;
26100784Sfenner	char *device;
27100784Sfenner};
28100784Sfenner
29100784Sfennerint	ifaddrlist(struct ifaddrlist **, char *);
30