ifaddrlist.h revision 100784
128219Smsmith/*
228219Smsmith * Copyright (c) 1997
328219Smsmith *	The Regents of the University of California.  All rights reserved.
428219Smsmith *
528219Smsmith * Redistribution and use in source and binary forms, with or without
628219Smsmith * modification, are permitted provided that: (1) source code distributions
728219Smsmith * retain the above copyright notice and this paragraph in its entirety, (2)
828219Smsmith * distributions including binary code include the above copyright notice and
928219Smsmith * this paragraph in its entirety in the documentation or other materials
1028219Smsmith * provided with the distribution, and (3) all advertising materials mentioning
1128219Smsmith * features or use of this software display the following acknowledgement:
1228219Smsmith * ``This product includes software developed by the University of California,
1328219Smsmith * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
1428219Smsmith * the University nor the names of its contributors may be used to endorse
1528219Smsmith * or promote products derived from this software without specific prior
1628219Smsmith * written permission.
1728219Smsmith * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
1828219Smsmith * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
1928219Smsmith * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
2028219Smsmith *
2128219Smsmith * @(#) $Header: traceroute.h,v 1.1 97/01/04 19:33:33 leres Locked $ (LBL)
2228219Smsmith */
2328219Smsmith
2428219Smsmithstruct ifaddrlist {
2528219Smsmith	u_int32_t addr;
2628219Smsmith	char *device;
2728219Smsmith};
2828219Smsmith
2928219Smsmithint	ifaddrlist(struct ifaddrlist **, char *);
3028219Smsmith