as.h revision 176428
1176428Srpaulo/* $FreeBSD: head/contrib/traceroute/as.h 176428 2008-02-20 23:29:53Z rpaulo $ */
2176428Srpaulo/*	$NetBSD: as.h,v 1.1 2001/11/04 23:14:36 atatat Exp $	*/
3176428Srpaulo
4176428Srpaulo/*
5176428Srpaulo * Copyright (c) 2001 The NetBSD Foundation, Inc.
6176428Srpaulo * All rights reserved.
7176428Srpaulo *
8176428Srpaulo * This code is derived from software contributed to The NetBSD Foundation
9176428Srpaulo * by Andrew Brown.
10176428Srpaulo *
11176428Srpaulo * Redistribution and use in source and binary forms, with or without
12176428Srpaulo * modification, are permitted provided that the following conditions
13176428Srpaulo * are met:
14176428Srpaulo * 1. Redistributions of source code must retain the above copyright
15176428Srpaulo *    notice, this list of conditions and the following disclaimer.
16176428Srpaulo * 2. Redistributions in binary form must reproduce the above copyright
17176428Srpaulo *    notice, this list of conditions and the following disclaimer in the
18176428Srpaulo *    documentation and/or other materials provided with the distribution.
19176428Srpaulo * 3. All advertising materials mentioning features or use of this software
20176428Srpaulo *    must display the following acknowledgement:
21176428Srpaulo *        This product includes software developed by the NetBSD
22176428Srpaulo *        Foundation, Inc. and its contributors.
23176428Srpaulo * 4. Neither the name of The NetBSD Foundation nor the names of its
24176428Srpaulo *    contributors may be used to endorse or promote products derived
25176428Srpaulo *    from this software without specific prior written permission.
26176428Srpaulo *
27176428Srpaulo * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
28176428Srpaulo * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
29176428Srpaulo * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
30176428Srpaulo * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
31176428Srpaulo * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
32176428Srpaulo * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
33176428Srpaulo * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
34176428Srpaulo * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
35176428Srpaulo * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
36176428Srpaulo * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
37176428Srpaulo * POSSIBILITY OF SUCH DAMAGE.
38176428Srpaulo */
39176428Srpaulo
40176428Srpaulovoid	*as_setup __P((char *));
41176428Srpauloint	as_lookup __P((void *, struct in_addr *));
42176428Srpaulovoid	as_shutdown __P((void *));
43