minix/servers/inet/generic/icmp_lib.h

26 lines
590 B
C
Raw Normal View History

2005-04-21 16:53:53 +02:00
/*
icmp_lib.h
Created Sept 30, 1991 by Philip Homburg
Copyright 1995 Philip Homburg
*/
#ifndef ICMP_LIB_H
#define ICMP_LIB_H
/* Prototypes */
void icmp_snd_parmproblem ARGS(( acc_t *pack ));
void icmp_snd_time_exceeded ARGS(( int port_nr, acc_t *pack, int code ));
void icmp_snd_unreachable ARGS(( int port_nr, acc_t *pack, int code ));
void icmp_snd_redirect ARGS(( int port_nr, acc_t *pack, int code,
ipaddr_t gw ));
void icmp_snd_mtu ARGS(( int port_nr, acc_t *pack, u16_t mtu ));
2005-04-21 16:53:53 +02:00
#endif /* ICMP_LIB_H */
/*
* $PchId: icmp_lib.h,v 1.6 2002/06/08 21:32:44 philip Exp $
2005-04-21 16:53:53 +02:00
*/