Replace outdated NLS support with GNU gettext (patch from
[platform/upstream/net-tools.git] / lib / getroute.c
1 /*
2  * lib/getroute.c       This file contains a small interface function to
3  *                      use the AF specific print routine for the routing
4  *                      table.
5  *
6  * NET-LIB      A collection of functions used from the base set of the
7  *              NET-3 Networking Distribution for the LINUX operating
8  *              system. (net-tools, net-drivers)
9  *
10  * Version:     lib/getroute.c 1.03 (1996-04-13)
11  *
12  * Author:      Bernd 'eckes' Eckenfels <net-tools@lina.inka.de>
13  *              Copyright 1999 Bernd Eckenfels, Germany
14  *
15  * Modifications:
16  *
17  *951020 {0.10} Bernd Eckenfels:        creation
18  *960202 {0.90} Bernd Eckenfels:        rewrite to use getaftype.
19  *960204 {0.91} Bernd Eckenfels:        takes constant list of AFs
20  *960206 {1.01} Bernd Eckenfels:        route_init will enable routing
21  *                                      support in the AF handlers
22  *960221 {1.02} Bernd Eckenfels:        renamed from route_info to getroute.c
23  *960413 {1.03} Bernd Eckenfels:        new RTACTION support
24  *980701 {1.04} Arnaldo C. Melo:        GNU gettext instead of catgets
25  *
26  *              This program is free software; you can redistribute it
27  *              and/or  modify it under  the terms of  the GNU General
28  *              Public  License as  published  by  the  Free  Software
29  *              Foundation;  either  version 2 of the License, or  (at
30  *              your option) any later version.
31  */
32 #include <stdio.h>
33 #include <string.h>
34 #include "net-support.h"
35 #include "pathnames.h"
36 #include "version.h"
37 #include "config.h"
38 #include "intl.h"
39
40 extern  struct aftype   unspec_aftype;
41 extern  struct aftype   unix_aftype;
42 extern  struct aftype   inet_aftype;
43 extern  struct aftype   inet6_aftype;
44 extern  struct aftype   ax25_aftype;
45 extern  struct aftype   netrom_aftype;
46 extern  struct aftype   ipx_aftype;
47 extern  struct aftype   ddp_aftype;
48
49 void
50 getroute_init(void)
51 {
52 #if HAVE_AFINET
53         inet_aftype.rprint = INET_rprint;
54 #endif
55 #if HAVE_AFINET6
56         inet6_aftype.rprint = INET6_rprint;
57 #endif
58 #if HAVE_AFNETROM
59         netrom_aftype.rprint = NETROM_rprint;
60 #endif
61 #if HAVE_AFAX25
62         ax25_aftype.rprint = AX25_rprint;
63 #endif
64 #if HAVE_AFIPX
65         ipx_aftype.rprint = IPX_rprint;
66 #endif
67 #if HAVE_AFATALK
68         ddp_aftype.rprint = DDP_rprint;
69 #endif
70 }
71
72 int
73 route_info(const char *afname, int options)
74 {
75   struct aftype *ap;
76   char *tmp1,*tmp2;
77   int found=E_NOTFOUND,rc;
78   char buf[256];
79   
80   strncpy(buf,afname,sizeof(buf));
81   buf[sizeof(buf)-1]='\0';
82    
83   tmp1=buf;
84   
85   while(tmp1) {
86         
87         ap=NULL;
88         
89         if ((tmp2=index(tmp1,',')))
90                 *tmp2++='\0';
91   
92         if (!tmp1[0]) {
93                 tmp1=tmp2;
94                 continue;
95         }
96         
97         ap = get_aftype(tmp1);
98   
99         if (!ap) {
100                 fprintf(stderr,_("Address family `%s' not supported.\n"),tmp1);
101                 return(E_OPTERR);
102         }
103         tmp1=tmp2;
104   
105         if (!ap->rprint) {
106                 fprintf(stderr,_("No routing for address family `%s'.\n"),ap->name);
107                 return(E_OPTERR);
108         }
109         
110         found = 0;
111         
112         if ((rc = ap->rprint(options)))
113                 return(rc);
114         
115   }
116   return(found);
117 }