sctp6_var.h revision 170606
1162017Ssam/*-
2190207Srpaulo * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3162017Ssam *
4162017Ssam * Redistribution and use in source and binary forms, with or without
5162017Ssam * modification, are permitted provided that the following conditions are met:
6162017Ssam *
7162017Ssam * a) Redistributions of source code must retain the above copyright notice,
8162017Ssam *   this list of conditions and the following disclaimer.
9162017Ssam *
10162017Ssam * b) Redistributions in binary form must reproduce the above copyright
11162017Ssam *    notice, this list of conditions and the following disclaimer in
12162017Ssam *   the documentation and/or other materials provided with the distribution.
13162017Ssam *
14162017Ssam * c) Neither the name of Cisco Systems, Inc. nor the names of its
15162017Ssam *    contributors may be used to endorse or promote products derived
16190207Srpaulo *    from this software without specific prior written permission.
17162017Ssam *
18162017Ssam * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19162017Ssam * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20162017Ssam * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21276788Sdelphij * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22162017Ssam * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23162017Ssam * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24162017Ssam * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25162017Ssam * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26162017Ssam * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27162017Ssam * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28162017Ssam * THE POSSIBILITY OF SUCH DAMAGE.
29162017Ssam */
30162017Ssam/*	$KAME: sctp6_var.h,v 1.7 2004/08/17 04:06:22 itojun Exp $	*/
31162017Ssam#ifndef _NETINET6_SCTP6_VAR_H_
32190207Srpaulo#define _NETINET6_SCTP6_VAR_H_
33162017Ssam#include <sys/cdefs.h>
34190207Srpaulo__FBSDID("$FreeBSD: head/sys/netinet6/sctp6_var.h 170606 2007-06-12 11:21:00Z rrs $");
35276788Sdelphij
36276788Sdelphij#if defined(_KERNEL)
37162017Ssam
38162017SsamSYSCTL_DECL(_net_inet6_sctp6);
39162017Ssamextern struct pr_usrreqs sctp6_usrreqs;
40162017Ssam
41190207Srpaulo
42162017Ssamint sctp6_input __P((struct mbuf **, int *, int));
43162017Ssamint sctp6_output
44162017Ssam__P((struct sctp_inpcb *, struct mbuf *, struct sockaddr *,
45162017Ssam    struct mbuf *, struct proc *));
46162017Ssam	void sctp6_ctlinput __P((int, struct sockaddr *, void *));
47162017Ssam
48162017Ssam
49190207Srpaulo#endif				/* _KERNEL */
50162017Ssam#endif
51162017Ssam