sctp_asconf.h revision 170744
1163953Srrs/*-
2169382Srrs * Copyright (c) 2001-2007, by Cisco Systems, Inc. All rights reserved.
3163953Srrs *
4163953Srrs * Redistribution and use in source and binary forms, with or without
5163953Srrs * modification, are permitted provided that the following conditions are met:
6163953Srrs *
7163953Srrs * a) Redistributions of source code must retain the above copyright notice,
8163953Srrs *   this list of conditions and the following disclaimer.
9163953Srrs *
10163953Srrs * b) Redistributions in binary form must reproduce the above copyright
11163953Srrs *    notice, this list of conditions and the following disclaimer in
12163953Srrs *   the documentation and/or other materials provided with the distribution.
13163953Srrs *
14163953Srrs * c) Neither the name of Cisco Systems, Inc. nor the names of its
15163953Srrs *    contributors may be used to endorse or promote products derived
16163953Srrs *    from this software without specific prior written permission.
17163953Srrs *
18163953Srrs * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19163953Srrs * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
20163953Srrs * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21163953Srrs * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
22163953Srrs * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23163953Srrs * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24163953Srrs * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25163953Srrs * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26163953Srrs * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27163953Srrs * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF
28163953Srrs * THE POSSIBILITY OF SUCH DAMAGE.
29163953Srrs */
30163953Srrs
31163953Srrs/* $KAME: sctp_asconf.h,v 1.8 2005/03/06 16:04:16 itojun Exp $	 */
32163953Srrs
33163953Srrs#include <sys/cdefs.h>
34163953Srrs__FBSDID("$FreeBSD: head/sys/netinet/sctp_asconf.h 170744 2007-06-14 22:59:04Z rrs $");
35163953Srrs
36163953Srrs#ifndef _NETINET_SCTP_ASCONF_H_
37163953Srrs#define _NETINET_SCTP_ASCONF_H_
38163953Srrs
39163953Srrs#if defined(_KERNEL)
40163953Srrs
41165647Srrs/*
42165647Srrs * function prototypes
43165647Srrs */
44163953Srrsextern void sctp_asconf_cleanup(struct sctp_tcb *, struct sctp_nets *);
45163953Srrs
46165647Srrsextern struct mbuf *sctp_compose_asconf(struct sctp_tcb *, int *);
47163953Srrs
48163953Srrsextern void
49163953Srrssctp_handle_asconf(struct mbuf *, unsigned int, struct sctp_asconf_chunk *,
50163953Srrs    struct sctp_tcb *);
51163953Srrs
52163953Srrsextern void
53163953Srrssctp_handle_asconf_ack(struct mbuf *, int,
54163953Srrs    struct sctp_asconf_ack_chunk *, struct sctp_tcb *, struct sctp_nets *);
55163953Srrs
56163953Srrsextern uint32_t
57163953Srrssctp_addr_mgmt_ep_sa(struct sctp_inpcb *, struct sockaddr *,
58170744Srrs    uint32_t, uint32_t, struct sctp_ifa *);
59163953Srrs
60163953Srrs
61167598Srrsint sctp_iterator_ep(struct sctp_inpcb *inp, void *ptr, uint32_t val);
62167598Srrsvoid sctp_iterator_stcb(struct sctp_inpcb *inp, struct sctp_tcb *stcb, void *ptr, uint32_t type);
63167598Srrsint sctp_iterator_ep_end(struct sctp_inpcb *inp, void *ptr, uint32_t val);
64167598Srrsvoid sctp_iterator_end(void *ptr, uint32_t val);
65163953Srrs
66163953Srrs
67163953Srrsextern int32_t
68163953Srrssctp_set_primary_ip_address_sa(struct sctp_tcb *,
69163953Srrs    struct sockaddr *);
70163953Srrs
71167598Srrsextern void
72167598Srrs     sctp_set_primary_ip_address(struct sctp_ifa *ifa);
73163953Srrs
74163953Srrsextern void
75163953Srrssctp_check_address_list(struct sctp_tcb *, struct mbuf *, int, int,
76163953Srrs    struct sockaddr *, uint16_t, uint16_t, uint16_t, uint16_t);
77163953Srrs
78163953Srrs#endif				/* _KERNEL */
79163953Srrs
80163953Srrs#endif				/* !_NETINET_SCTP_ASCONF_H_ */
81