📄 setroute.c
字号:
/* * lib/setroute.c This file contains a small interface function to * use the AF specific input routine for the routing * table. * * NET-LIB A collection of functions used from the base set of the * NET-3 Networking Distribution for the LINUX operating * system. (net-tools, net-drivers) * * Version: $Id: setroute.c,v 1.3 1998/11/15 20:12:07 freitag Exp $ * * Author: Bernd 'eckes' Eckenfels <net-tools@lina.inka.de> * Copyright 1999 Bernd Eckenfels, Germany * * Modifications: * *960221 {0.01} Bernd Eckenfels: generated from getroute.c *960413 {0.02} Bernd Eckenfels: new RTACTION support *960809 Frank Strauss: INET6 * * This program is free software; you can redistribute it * and/or modify it under the terms of the GNU General * Public License as published by the Free Software * Foundation; either version 2 of the License, or (at * your option) any later version. */#include <stdio.h>#include <string.h>#include "net-support.h"#include "pathnames.h"#include "version.h"#include "config.h"#include "intl.h"extern struct aftype unspec_aftype;extern struct aftype unix_aftype;extern struct aftype inet_aftype;extern struct aftype inet6_aftype;extern struct aftype ax25_aftype;extern struct aftype netrom_aftype;extern struct aftype ipx_aftype;extern struct aftype ddp_aftype;void setroute_init(void){#if HAVE_AFINET inet_aftype.rinput = INET_rinput;#endif#if HAVE_AFINET6 inet6_aftype.rinput = INET6_rinput;#endif#if HAVE_AFNETROM netrom_aftype.rinput = NETROM_rinput;#endif#if HAVE_AFIPX ipx_aftype.rinput = IPX_rinput;#endif#if 0#if HAVE_AFAX25 ax25_aftype.rinput = AX25_rinput;#endif#if HAVE_AFATALK ddp_aftype.rinput = DDP_rinput;#endif#endif}int route_edit(int action, const char *afname, int options, char **argv){ struct aftype *ap; ap = get_aftype(afname); if (!ap) { fprintf(stderr, _("Address family `%s' not supported.\n"), afname); return (E_OPTERR); } if (!ap->rinput) { fprintf(stderr, _("No routing for address family `%s'.\n"), ap->name); return (E_OPTERR); } return (ap->rinput(action, options, argv));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -