1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68
|
/*
* Public domain
* netinet/ip_icmp.h compatibility shim
*/
#include_next <netinet/ip_icmp.h>
#ifndef ICMP_ALTHOSTADDR
#define ICMP_ALTHOSTADDR 6 /* alternate host address */
#endif
#ifndef ICMP_TRACEROUTE
#define ICMP_TRACEROUTE 30 /* traceroute */
#endif
#ifndef ICMP_DATACONVERR
#define ICMP_DATACONVERR 31 /* data conversion error */
#endif
#ifndef ICMP_MOBILE_REDIRECT
#define ICMP_MOBILE_REDIRECT 32 /* mobile host redirect */
#endif
#ifndef ICMP_IPV6_WHEREAREYOU
#define ICMP_IPV6_WHEREAREYOU 33 /* IPv6 where-are-you */
#endif
#ifndef ICMP_IPV6_IAMHERE
#define ICMP_IPV6_IAMHERE 34 /* IPv6 i-am-here */
#endif
#ifndef ICMP_MOBILE_REGREQUEST
#define ICMP_MOBILE_REGREQUEST 35 /* mobile registration req */
#endif
#ifndef ICMP_MOBILE_REGREPLY
#define ICMP_MOBILE_REGREPLY 36 /* mobile registration reply */
#endif
#ifndef ICMP_SKIP
#define ICMP_SKIP 39 /* SKIP */
#endif
#ifndef ICMP_PHOTURIS
#define ICMP_PHOTURIS 40 /* Photuris */
#define ICMP_PHOTURIS_UNKNOWN_INDEX 1 /* unknown sec index */
#define ICMP_PHOTURIS_AUTH_FAILED 2 /* auth failed */
#define ICMP_PHOTURIS_DECRYPT_FAILED 3 /* decrypt failed */
#endif
#ifndef ICMP_UNREACH_FILTER_PROHIB
#define ICMP_UNREACH_FILTER_PROHIB 13 /* precedence violat'n*/
#endif
#ifndef ICMP_UNREACH_HOST_PRECEDENCE
#define ICMP_UNREACH_HOST_PRECEDENCE 14 /* precedence violat'n*/
#endif
#ifndef ICMP_UNREACH_PRECEDENCE_CUTOFF
#define ICMP_UNREACH_PRECEDENCE_CUTOFF 15 /* precedence cutoff */
#endif
#ifndef ICMP_ROUTERADVERT_NORMAL
#define ICMP_ROUTERADVERT_NORMAL 0 /* normal advertisement */
#endif
#ifndef ICMP_ROUTERADVERT_NOROUTE_COMMON
#define ICMP_ROUTERADVERT_NOROUTE_COMMON 16 /* selective routing */
#endif
#ifndef ICMP_PARAMPROB_ERRATPTR
#define ICMP_PARAMPROB_ERRATPTR 0 /* req. opt. absent */
#endif
#ifndef ICMP_PARAMPROB_OPTABSENT
#define ICMP_PARAMPROB_OPTABSENT 1 /* req. opt. absent */
#endif
#ifndef ICMP_PARAMPROB_LENGTH
#define ICMP_PARAMPROB_LENGTH 2 /* bad length */
#endif
|