4 Definitions for the Routing Information Protocol (RFC-1058).
6 Created: Aug 16, 1993 by Philip Homburg <philip@cs.vu.nl>
9 #ifndef NET__GEN__RIP_H
10 #define NET__GEN__RIP_H
12 typedef struct rip_hdr
20 #define RHC_RESPONSE 2
22 #define RIP_ENTRY_MAX 25
24 typedef struct rip_entry
49 #define RIP_FAMILY_IP 2
50 #define RIP_INFINITY 16
52 #define RIP_UDP_PORT 520
53 #define RIP_PERIOD 30 /* A responce is sent once every
56 #define RIP_FUZZ 10 /* The actual value used is RIP_FREQUENCE -
57 * a random number of at most RIP_FUZZ.
59 #define RIP_TIMEOUT 180 /* A route is dead after RIP_TIMEOUT seconds */
60 #define RIP_DELETE_TO 120 /* A dead route is removed after RIP_DELETE_TO
68 #define RIP_TIMEOUT 10
70 #define RIP_DELETE_TO 10
71 #endif /* __RIP_DEBUG */
73 #endif /* NET__GEN__RIP_H */
76 * $PchId: rip.h,v 1.3 1995/11/17 22:21:16 philip Exp $