|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T r
Length: 674 (0x2a2) Types: TextFile Names: »rtlib.h«
└─⟦9ae75bfbd⟧ Bits:30007242 EUUGD3: Starter Kit └─⟦2fafebccf⟧ »EurOpenD3/mail/smail3.1.19.tar.Z« └─⟦bcd2bc73f⟧ └─⟦this⟧ »src/routers/rtlib.h«
/* @(#)rtlib.h 1.1 10/16/88 19:43:54 */ /* * 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();