linprocfs - Introduce /proc/mounts
[dragonfly.git] / sys / netinet / if_atm.h
blob981239b836e0824e411f0f85d22e3a819fad6458
1 /* $FreeBSD: src/sys/netinet/if_atm.h,v 1.2.6.2 2001/12/20 10:30:18 ru Exp $ */
2 /* $DragonFly: src/sys/netinet/if_atm.h,v 1.5 2006/05/20 02:42:12 dillon Exp $ */
3 /* $NetBSD: if_atm.h,v 1.2 1996/07/03 17:17:17 chuck Exp $ */
5 /*
7 * Copyright (c) 1996 Charles D. Cranor and Washington University.
8 * All rights reserved.
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
12 * are met:
13 * 1. Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 * 2. Redistributions in binary form must reproduce the above copyright
16 * notice, this list of conditions and the following disclaimer in the
17 * documentation and/or other materials provided with the distribution.
18 * 3. All advertising materials mentioning features or use of this software
19 * must display the following acknowledgement:
20 * This product includes software developed by Charles D. Cranor and
21 * Washington University.
22 * 4. The name of the author may not be used to endorse or promote products
23 * derived from this software without specific prior written permission.
25 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
26 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
27 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
28 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
29 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
30 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
34 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 * if_atm.h
40 #ifndef _NETINET_IF_ATM_H_
41 #define _NETINET_IF_ATM_H_
43 struct atm_pseudohdr;
44 struct mbuf;
45 struct rtentry;
46 struct rt_addrinfo;
47 struct sockaddr;
49 void atm_rtrequest (int, struct rtentry *, struct rt_addrinfo *);
50 int atmresolve (struct rtentry *, struct mbuf *, struct sockaddr *,
51 struct atm_pseudohdr *);
53 #endif