diff -U 4 -r ipxripd/Makefile ipxripd-new/Makefile --- ipxripd/Makefile Sun Feb 4 13:52:29 1996 +++ ipxripd-new/Makefile Wed Jul 8 18:38:30 1998 @@ -1,8 +1,8 @@ OBJS = ipxd.o ipxripd.o ipxsapd.o ipxsap.o ipxrip.o ipxkern.o ipxutil.o -CFLAGS = -Wall -O2 -g +CFLAGS = -Wall -O2 -g all: ipxd dep: diff -U 4 -r ipxripd/ipxkern.c ipxripd-new/ipxkern.c --- ipxripd/ipxkern.c Thu Feb 1 17:56:07 1996 +++ ipxripd-new/ipxkern.c Wed Jul 8 18:35:51 1998 @@ -21,11 +21,11 @@ */ #include #include #include +/*#include */ #include #include -#include #include #include "ipxkern.h" #define MAX_IFC (256) diff -U 4 -r ipxripd/ipxkern.h ipxripd-new/ipxkern.h --- ipxripd/ipxkern.h Thu Feb 1 17:56:18 1996 +++ ipxripd-new/ipxkern.h Wed Jul 8 18:35:34 1998 @@ -25,8 +25,90 @@ #define __IPXKERN_H__ #include "ipxutil.h" +/* ------------------ inserted from /usr/include/route.h ------------ */ + +/* + * INET An implementation of the TCP/IP protocol suite for the LINUX + * operating system. INET is implemented using the BSD Socket + * interface as the means of communication with the user level. + * + * Global definitions for the IP router interface. + * + * Version: @(#)route.h 1.0.3 05/27/93 + * + * Authors: Original taken from Berkeley UNIX 4.3, (c) UCB 1986-1988 + * for the purposes of compatibility only. + * + * Fred N. van Kempen, + * + * 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. + */ +#ifndef _LINUX_ROUTE_H +#define _LINUX_ROUTE_H + + +/* This structure gets passed by the SIOCADDRT and SIOCDELRT calls. */ +struct rtentry +{ + unsigned long rt_hash; /* hash key for lookups */ + struct sockaddr rt_dst; /* target address */ + struct sockaddr rt_gateway; /* gateway addr (RTF_GATEWAY) */ + struct sockaddr rt_genmask; /* target network mask (IP) */ + short rt_flags; + short rt_refcnt; + unsigned long rt_use; + struct ifnet *rt_ifp; + short rt_metric; /* +1 for binary compatibility! */ + char *rt_dev; /* forcing the device at add */ + unsigned long rt_mss; /* per route MTU/Window */ + unsigned long rt_window; /* Window clamping */ + unsigned short rt_irtt; /* Initial RTT */ +}; + + +#define RTF_UP 0x0001 /* route usable */ +#define RTF_GATEWAY 0x0002 /* destination is a gateway */ +#define RTF_HOST 0x0004 /* host entry (net otherwise) */ +#define RTF_REINSTATE 0x0008 /* reinstate route after tmout */ +#define RTF_DYNAMIC 0x0010 /* created dyn. (by redirect) */ +#define RTF_MODIFIED 0x0020 /* modified dyn. (by redirect) */ +#define RTF_MSS 0x0040 /* specific MSS for this route */ +#define RTF_WINDOW 0x0080 /* per route window clamping */ +#define RTF_IRTT 0x0100 /* Initial round trip time */ +#define RTF_REJECT 0x0200 /* Reject route */ +#define RTF_NOTCACHED 0x0400 /* this route isn't cached */ + +/* + * This structure is passed from the kernel to user space by netlink + * routing/device announcements + */ + +struct netlink_rtinfo +{ + unsigned long rtmsg_type; + struct sockaddr rtmsg_dst; + struct sockaddr rtmsg_gateway; + struct sockaddr rtmsg_genmask; + short rtmsg_flags; + short rtmsg_metric; + char rtmsg_device[16]; +}; + +#define RTMSG_NEWROUTE 0x01 +#define RTMSG_DELROUTE 0x02 +#define RTMSG_NEWDEVICE 0x11 +#define RTMSG_DELDEVICE 0x12 + +#endif /* _LINUX_ROUTE_H */ + +/* ------------------------------------------------------------------ */ + + #define IPX_KRT_INTERNAL (1) #define IPX_KRT_ROUTE (2) typedef int (*IPXifcScanFunc)(IPXNet,IPXNode,char *,int,void*);