165309e5cSBrian Somers /*- 2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 31de7b4b8SPedro F. Giffuni * 465309e5cSBrian Somers * Copyright (c) 1996 - 2001 Brian Somers <brian@Awfulhak.org> 565309e5cSBrian Somers * based on work by Toshiharu OHNO <tony-o@iij.ad.jp> 665309e5cSBrian Somers * Internet Initiative Japan, Inc (IIJ) 765309e5cSBrian Somers * All rights reserved. 8ed6a16c1SPoul-Henning Kamp * 965309e5cSBrian Somers * Redistribution and use in source and binary forms, with or without 1065309e5cSBrian Somers * modification, are permitted provided that the following conditions 1165309e5cSBrian Somers * are met: 1265309e5cSBrian Somers * 1. Redistributions of source code must retain the above copyright 1365309e5cSBrian Somers * notice, this list of conditions and the following disclaimer. 1465309e5cSBrian Somers * 2. Redistributions in binary form must reproduce the above copyright 1565309e5cSBrian Somers * notice, this list of conditions and the following disclaimer in the 1665309e5cSBrian Somers * documentation and/or other materials provided with the distribution. 17ed6a16c1SPoul-Henning Kamp * 1865309e5cSBrian Somers * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 1965309e5cSBrian Somers * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 2065309e5cSBrian Somers * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 2165309e5cSBrian Somers * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 2265309e5cSBrian Somers * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2365309e5cSBrian Somers * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2465309e5cSBrian Somers * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2565309e5cSBrian Somers * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2665309e5cSBrian Somers * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2765309e5cSBrian Somers * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2865309e5cSBrian Somers * SUCH DAMAGE. 29ed6a16c1SPoul-Henning Kamp */ 30ed6a16c1SPoul-Henning Kamp 312764b86aSBrian Somers struct bundle; 322764b86aSBrian Somers struct cmdargs; 336b457978SBrian Somers struct rt_msghdr; 346b457978SBrian Somers struct sockaddr; 352764b86aSBrian Somers 3630949fd4SBrian Somers #define ROUTE_STATIC 0x0000 3730949fd4SBrian Somers #define ROUTE_DSTMYADDR 0x0001 3830949fd4SBrian Somers #define ROUTE_DSTMYADDR6 0x0002 3930949fd4SBrian Somers #define ROUTE_DSTHISADDR 0x0004 4030949fd4SBrian Somers #define ROUTE_DSTHISADDR6 0x0008 4130949fd4SBrian Somers #define ROUTE_DSTDNS0 0x0010 4230949fd4SBrian Somers #define ROUTE_DSTDNS1 0x0020 4330949fd4SBrian Somers #define ROUTE_DSTANY 0x0040 4430949fd4SBrian Somers #define ROUTE_GWHISADDR 0x0080 /* May be ORd with DST_* */ 4530949fd4SBrian Somers #define ROUTE_GWHISADDR6 0x0100 /* May be ORd with DST_* */ 46610b185fSBrian Somers 47610b185fSBrian Somers struct sticky_route { 48610b185fSBrian Somers int type; /* ROUTE_* value (not _STATIC) */ 49610b185fSBrian Somers struct sticky_route *next; /* next in list */ 50610b185fSBrian Somers 5130949fd4SBrian Somers struct ncprange dst; 5230949fd4SBrian Somers struct ncpaddr gw; 53610b185fSBrian Somers }; 54610b185fSBrian Somers 5575240ed1SBrian Somers extern int GetIfIndex(char *); 56dd7e2610SBrian Somers extern int route_Show(struct cmdargs const *); 57dd7e2610SBrian Somers extern void route_IfDelete(struct bundle *, int); 5803a2501aSBrian Somers extern void route_UpdateMTU(struct bundle *); 59c6fe0cb2SBrian Somers extern const char *Index2Nam(int); 60610b185fSBrian Somers extern void route_Change(struct bundle *, struct sticky_route *, 6130949fd4SBrian Somers const struct ncpaddr *, const struct ncpaddr *); 6230949fd4SBrian Somers extern void route_Add(struct sticky_route **, int, const struct ncprange *, 6330949fd4SBrian Somers const struct ncpaddr *); 6430949fd4SBrian Somers extern void route_Delete(struct sticky_route **, int, const struct ncprange *); 65610b185fSBrian Somers extern void route_DeleteAll(struct sticky_route **); 66610b185fSBrian Somers extern void route_Clean(struct bundle *, struct sticky_route *); 67972a1bcfSBrian Somers extern void route_ShowSticky(struct prompt *, struct sticky_route *, 68972a1bcfSBrian Somers const char *, int); 696b457978SBrian Somers extern void route_ParseHdr(struct rt_msghdr *, struct sockaddr *[RTAX_MAX]); 7030949fd4SBrian Somers extern int rt_Set(struct bundle *, int, const struct ncprange *, 7130949fd4SBrian Somers const struct ncpaddr *, int, int); 725ae08329SBrian Somers extern void rt_Update(struct bundle *, const struct sockaddr *, 730e81959dSBjoern A. Zeeb const struct sockaddr *, const struct sockaddr *, 745ae08329SBrian Somers const struct sockaddr *, const struct sockaddr *); 75