. service tells you which device it couldn't stat
[minix3.git] / servers / inet / generic / icmp.h
blob12fe3b954e63faf5d92bfbfe3af2d098d18d46cc
1 /*
2 icmp.h
4 Copyright 1995 Philip Homburg
5 */
7 #ifndef ICMP_H
8 #define ICMP_H
10 #define ICMP_MAX_DATAGRAM 8196
11 #define ICMP_DEF_TTL 96
13 /* Rate limit. The implementation is a bit sloppy and may send twice the
14 * number of packets.
16 #define ICMP_MAX_RATE 100 /* This many per interval */
17 #define ICMP_RATE_INTERVAL (1*HZ) /* Interval in ticks */
18 #define ICMP_RATE_WARN 10 /* Report this many dropped packets */
20 /* Prototypes */
22 void icmp_prep ARGS(( void ));
23 void icmp_init ARGS(( void ));
26 #endif /* ICMP_H */
29 * $PchId: icmp.h,v 1.7 2001/04/19 19:06:18 philip Exp $