add/re-enable at_wini debug output
[minix3.git] / servers / inet / generic / icmp_lib.h
blob7501f1a7aecdadf00a81834b18245912fbbe9eb3
1 /*
2 icmp_lib.h
4 Created Sept 30, 1991 by Philip Homburg
6 Copyright 1995 Philip Homburg
7 */
9 #ifndef ICMP_LIB_H
10 #define ICMP_LIB_H
12 /* Prototypes */
14 void icmp_snd_parmproblem ARGS(( acc_t *pack ));
15 void icmp_snd_time_exceeded ARGS(( int port_nr, acc_t *pack, int code ));
16 void icmp_snd_unreachable ARGS(( int port_nr, acc_t *pack, int code ));
17 void icmp_snd_redirect ARGS(( int port_nr, acc_t *pack, int code,
18 ipaddr_t gw ));
19 void icmp_snd_mtu ARGS(( int port_nr, acc_t *pack, U16_t mtu ));
21 #endif /* ICMP_LIB_H */
24 * $PchId: icmp_lib.h,v 1.6 2002/06/08 21:32:44 philip Exp $