12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- #ifndef _IP_PROT__H_
- #define _IP_PROT__H_
- #define IP_PROTOCOL_ICMP 0x01
- #define IP_PROTOCOL_IGMP 0x02
- #define IP_PROTOCOL_IPV4 0x04
- #define IP_PROTOCOL_TCP 0x06
- #define IP_PROTOCOL_UDP 0x11
- #define IP_PROTOCOL_RDP 0x1B
- #define IP_PROTOCOL_IPV6 0x29
- #define IP_PROTOCOL_IPV6_ROUTE 0x2B
- #define IP_PROTOCOL_IPV6_FRAG 0x2C
- #define IP_PROTOCOL_RSVP 0x2E
- #define IP_PROTOCOL_GRE 0x2F
- #define IP_PROTOCOL_MHRP 0x30
- #define IP_PROTOCOL_BNA 0x31
- #define IP_PROTOCOL_ESP 0x32
- #define IP_PROTOCOL_MOBILE 0x37
- #define IP_PROTOCOL_IPV6_ICMP 0x3A
- #define IP_PROTOCOL_IPV6_NONXT 0x3B
- #define IP_PROTOCOL_IPV6_OPTS 0x3C
- #define IP_PROTOCOL_IPCOMP 0x6C
- #define IP_PROTOCOL_L2TP 0x73
- #define IP_PROTOCOL_SMP 0x79
- #define IP_PROTOCOL_SCTP 0x84
- #define IP_PROTOCOL_SHIM6 0x8C
- #define IPV6_ICMP_TYPE_MLD 0x8F
- #endif
|