This is rtlib.h in view mode; [Download] [Up]
/* @(#)src/routers/rtlib.h 1.2 24 Oct 1990 05:24:50 */ /* * rtlib.h - interface file for routines in rtlib.c */ /* * structure for route information passed between the rt[dv]_standard * routines and the various router drivers that use them. */ struct rt_info { char *next_host; /* next-hop host string */ char *route; /* route from next_host to target */ int matchlen; /* length of match on target */ struct transport *transport; /* optional transport */ }; /* flag values passed from rt[dv]_standard to the driver routines */ #define RT_VERIFY 0x0001 /* Verify only */ /* external functions in the rtlib.c file */ void rtd_standard(); void rtv_standard();
These are the contents of the former NiCE NeXT User Group NeXTSTEP/OpenStep software archive, currently hosted by Netfuture.ch.