11.1Srjs/* $NetBSD: sctp_route.h,v 1.1 2019/06/25 15:33:56 rjs Exp $ */ 21.1Srjs 31.1Srjs#ifndef _NETINET_SCTP_ROUTE_H_ 41.1Srjs#define _NETINET_SCTP_ROUTE_H_ 51.1Srjs 61.1Srjs/* 71.1Srjs * Copyright (c) 2001, 2002, 2003, 2004 Cisco Systems, Inc. 81.1Srjs * All rights reserved. 91.1Srjs * 101.1Srjs * Redistribution and use in source and binary forms, with or without 111.1Srjs * modification, are permitted provided that the following conditions 121.1Srjs * are met: 131.1Srjs * 1. Redistributions of source code must retain the above copyright 141.1Srjs * notice, this list of conditions and the following disclaimer. 151.1Srjs * 2. Redistributions in binary form must reproduce the above copyright 161.1Srjs * notice, this list of conditions and the following disclaimer in the 171.1Srjs * documentation and/or other materials provided with the distribution. 181.1Srjs * 3. Neither the name of the project nor the names of its contributors 191.1Srjs * may be used to endorse or promote products derived from this software 201.1Srjs * without specific prior written permission. 211.1Srjs * 221.1Srjs * THIS SOFTWARE IS PROVIDED BY CISCO SYSTEMS AND CONTRIBUTORS ``AS IS'' AND 231.1Srjs * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 241.1Srjs * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 251.1Srjs * ARE DISCLAIMED. IN NO EVENT SHALL CISCO SYSTEMS OR CONTRIBUTORS BE LIABLE 261.1Srjs * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 271.1Srjs * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 281.1Srjs * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 291.1Srjs * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 301.1Srjs * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 311.1Srjs * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 321.1Srjs * SUCH DAMAGE. 331.1Srjs */ 341.1Srjs 351.1Srjs#if defined(_KERNEL) 361.1Srjs 371.1Srjsvoid sctp_add_ip_address(struct ifaddr *); 381.1Srjs 391.1Srjsvoid sctp_delete_ip_address(struct ifaddr *); 401.1Srjs 411.1Srjs#endif /* _KERNEL */ 421.1Srjs 431.1Srjs#endif /* !_NETINET_SCTP_ROUTE_H_ */ 44