ifaddrlist.h revision 100784
159191Skris/*
259191Skris * Copyright (c) 1997
359191Skris *	The Regents of the University of California.  All rights reserved.
459191Skris *
559191Skris * Redistribution and use in source and binary forms, with or without
659191Skris * modification, are permitted provided that: (1) source code distributions
759191Skris * retain the above copyright notice and this paragraph in its entirety, (2)
859191Skris * distributions including binary code include the above copyright notice and
959191Skris * this paragraph in its entirety in the documentation or other materials
1059191Skris * provided with the distribution, and (3) all advertising materials mentioning
1159191Skris * features or use of this software display the following acknowledgement:
1259191Skris * ``This product includes software developed by the University of California,
1359191Skris * Lawrence Berkeley Laboratory and its contributors.'' Neither the name of
1459191Skris * the University nor the names of its contributors may be used to endorse
1559191Skris * or promote products derived from this software without specific prior
1659191Skris * written permission.
1759191Skris * THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR IMPLIED
1859191Skris * WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED WARRANTIES OF
1959191Skris * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
2059191Skris *
2159191Skris * @(#) $Header: traceroute.h,v 1.1 97/01/04 19:33:33 leres Locked $ (LBL)
2259191Skris */
2359191Skris
2459191Skrisstruct ifaddrlist {
2559191Skris	u_int32_t addr;
2659191Skris	char *device;
2759191Skris};
2859191Skris
2959191Skrisint	ifaddrlist(struct ifaddrlist **, char *);
3059191Skris