ip_icmp.h
上传用户:szwxkjdz
上传日期:2007-01-05
资源大小:4k
文件大小:2k
源码类别:

扫描程序

开发平台:

Unix_Linux

  1. struct icmphdr
  2. {
  3.   u_int8_t type; /* message type */
  4.   u_int8_t code; /* type sub-code */
  5.   u_int16_t checksum;
  6.   union
  7.   {
  8.     struct
  9.     {
  10.       u_int16_t id;
  11.       u_int16_t sequence;
  12.     } echo; /* echo datagram */
  13.     u_int32_t gateway; /* gateway address */
  14.     struct
  15.     {
  16.       u_int16_t __unused;
  17.       u_int16_t mtu;
  18.     } frag; /* path mtu discovery */
  19.   } un;
  20. };
  21. #define ICMP_ECHOREPLY 0 /* Echo Reply */
  22. #define ICMP_DEST_UNREACH 3 /* Destination Unreachable */
  23. #define ICMP_SOURCE_QUENCH 4 /* Source Quench */
  24. #define ICMP_REDIRECT 5 /* Redirect (change route) */
  25. #define ICMP_ECHO 8 /* Echo Request */
  26. #define ICMP_TIME_EXCEEDED 11 /* Time Exceeded */
  27. #define ICMP_PARAMETERPROB 12 /* Parameter Problem */
  28. #define ICMP_TIMESTAMP 13 /* Timestamp Request */
  29. #define ICMP_TIMESTAMPREPLY 14 /* Timestamp Reply */
  30. #define ICMP_INFO_REQUEST 15 /* Information Request */
  31. #define ICMP_INFO_REPLY 16 /* Information Reply */
  32. #define ICMP_ADDRESS 17 /* Address Mask Request */
  33. #define ICMP_ADDRESSREPLY 18 /* Address Mask Reply */
  34. #define NR_ICMP_TYPES 18
  35. /* Codes for UNREACH. */
  36. #define ICMP_NET_UNREACH 0 /* Network Unreachable */
  37. #define ICMP_HOST_UNREACH 1 /* Host Unreachable */
  38. #define ICMP_PROT_UNREACH 2 /* Protocol Unreachable */
  39. #define ICMP_PORT_UNREACH 3 /* Port Unreachable */
  40. #define ICMP_FRAG_NEEDED 4 /* Fragmentation Needed/DF set */
  41. #define ICMP_SR_FAILED 5 /* Source Route failed */
  42. #define ICMP_NET_UNKNOWN 6
  43. #define ICMP_HOST_UNKNOWN 7
  44. #define ICMP_HOST_ISOLATED 8
  45. #define ICMP_NET_ANO 9
  46. #define ICMP_HOST_ANO 10
  47. #define ICMP_NET_UNR_TOS 11
  48. #define ICMP_HOST_UNR_TOS 12
  49. #define ICMP_PKT_FILTERED 13 /* Packet filtered */
  50. #define ICMP_PREC_VIOLATION 14 /* Precedence violation */
  51. #define ICMP_PREC_CUTOFF 15 /* Precedence cut off */
  52. #define NR_ICMP_UNREACH 15 /* instead of hardcoding immediate value */
  53. /* Codes for REDIRECT. */
  54. #define ICMP_REDIR_NET 0 /* Redirect Net */
  55. #define ICMP_REDIR_HOST 1 /* Redirect Host */
  56. #define ICMP_REDIR_NETTOS 2 /* Redirect Net for TOS */
  57. #define ICMP_REDIR_HOSTTOS 3 /* Redirect Host for TOS */
  58. /* Codes for TIME_EXCEEDED. */
  59. #define ICMP_EXC_TTL 0 /* TTL count exceeded */
  60. #define ICMP_EXC_FRAGTIME 1 /* Fragment Reass time exceeded */