sctp_bsd_addr.h revision 167598
1163953Srrs/*-
2166086Srrs * Copyright (c) 2001-2007, 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#include <sys/cdefs.h>
32163953Srrs__FBSDID("$FreeBSD: head/sys/netinet/sctp_bsd_addr.h 167598 2007-03-15 11:27:14Z rrs $");
33163953Srrs
34163953Srrs#ifndef __sctp_bsd_addr_h__
35163953Srrs#define __sctp_bsd_addr_h__
36163953Srrs
37163953Srrs#include <netinet/sctp_header.h>
38163953Srrs
39163953Srrs#if defined(_KERNEL)
40163953Srrs
41167598Srrs#if defined(SCTP_USE_THREAD_BASED_ITERATOR)
42167598Srrsvoid sctp_wakeup_iterator(void);
43163953Srrs
44167598Srrsvoid sctp_startup_iterator(void);
45163953Srrs
46167598Srrs#endif
47163953Srrs
48167598Srrsvoid
49167598Srrs     sctp_gather_internal_ifa_flags(struct sctp_ifa *ifa);
50163953Srrs
51163953Srrs
52167598Srrsextern void sctp_addr_change(struct ifaddr *ifa, int cmd);
53163953Srrs
54163953Srrs#endif
55163953Srrs#endif
56