aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhil Blundell <philb@gnu.org>2000-05-20 13:38:10 +0000
committerPhil Blundell <philb@gnu.org>2000-05-20 13:38:10 +0000
commit481de747db56a773a520eb3f0dfd357de4c80126 (patch)
treeaeb4b06d3dd8ea48c32275e093d5eb49a407c8b6 /lib/setroute.c
parentre applied the ipv6 addresses patch from Matthew (for intel platform) (diff)
downloadnet-tools-481de747db56a773a520eb3f0dfd357de4c80126.tar.gz
net-tools-481de747db56a773a520eb3f0dfd357de4c80126.tar.bz2
net-tools-481de747db56a773a520eb3f0dfd357de4c80126.zip
Add X.25 support.
Patch from "J.H.M. Dassen (Ray)" <jdassen@cistron.nl>
Diffstat (limited to 'lib/setroute.c')
-rw-r--r--lib/setroute.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/setroute.c b/lib/setroute.c
index 9a8b9d6..9ea1a4d 100644
--- a/lib/setroute.c
+++ b/lib/setroute.c
@@ -7,7 +7,7 @@
* 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 $
+ * Version: $Id: setroute.c,v 1.4 2000/05/20 13:38:10 pb Exp $
*
* Author: Bernd 'eckes' Eckenfels <net-tools@lina.inka.de>
* Copyright 1999 Bernd Eckenfels, Germany
@@ -40,6 +40,7 @@ extern struct aftype ax25_aftype;
extern struct aftype netrom_aftype;
extern struct aftype ipx_aftype;
extern struct aftype ddp_aftype;
+extern struct aftype x25_aftype;
void setroute_init(void)
{
@@ -55,6 +56,9 @@ void setroute_init(void)
#if HAVE_AFIPX
ipx_aftype.rinput = IPX_rinput;
#endif
+#if HAVE_AFX25
+ x25_aftype.rinput = X25_rinput;
+#endif
#if 0
#if HAVE_AFAX25
ax25_aftype.rinput = AX25_rinput;