ipproto.rs 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. const SOL_SOCKET: u16 = 1;
  2. #[derive(Debug, Clone, Copy, FromPrimitive, ToPrimitive, PartialEq, Eq)]
  3. pub enum IPProtocol {
  4. /// Dummy protocol for TCP.
  5. IP = 0,
  6. /// Internet Control Message Protocol.
  7. ICMP = 1,
  8. /// Internet Group Management Protocol.
  9. IGMP = 2,
  10. /// IPIP tunnels (older KA9Q tunnels use 94).
  11. IPIP = 4,
  12. /// Transmission Control Protocol.
  13. TCP = 6,
  14. /// Exterior Gateway Protocol.
  15. EGP = 8,
  16. /// PUP protocol.
  17. PUP = 12,
  18. /// User Datagram Protocol.
  19. UDP = 17,
  20. /// XNS IDP protocol.
  21. IDP = 22,
  22. /// SO Transport Protocol Class 4.
  23. TP = 29,
  24. /// Datagram Congestion Control Protocol.
  25. DCCP = 33,
  26. /// IPv6-in-IPv4 tunnelling.
  27. IPv6 = 41,
  28. /// RSVP Protocol.
  29. RSVP = 46,
  30. /// Generic Routing Encapsulation. (Cisco GRE) (rfc 1701, 1702)
  31. GRE = 47,
  32. /// Encapsulation Security Payload protocol
  33. ESP = 50,
  34. /// Authentication Header protocol
  35. AH = 51,
  36. /// Multicast Transport Protocol.
  37. MTP = 92,
  38. /// IP option pseudo header for BEET
  39. BEETPH = 94,
  40. /// Encapsulation Header.
  41. ENCAP = 98,
  42. /// Protocol Independent Multicast.
  43. PIM = 103,
  44. /// Compression Header Protocol.
  45. COMP = 108,
  46. /// Stream Control Transport Protocol
  47. SCTP = 132,
  48. /// UDP-Lite protocol (RFC 3828)
  49. UDPLITE = 136,
  50. /// MPLS in IP (RFC 4023)
  51. MPLSINIP = 137,
  52. /// Ethernet-within-IPv6 Encapsulation
  53. ETHERNET = 143,
  54. /// Raw IP packets
  55. RAW = 255,
  56. /// Multipath TCP connection
  57. MPTCP = 262,
  58. }
  59. impl TryFrom<u16> for IPProtocol {
  60. type Error = system_error::SystemError;
  61. fn try_from(value: u16) -> Result<Self, Self::Error> {
  62. match <Self as num_traits::FromPrimitive>::from_u16(value) {
  63. Some(p) => Ok(p),
  64. None => Err(system_error::SystemError::EPROTONOSUPPORT),
  65. }
  66. }
  67. }
  68. impl From<IPProtocol> for u16 {
  69. fn from(value: IPProtocol) -> Self {
  70. <IPProtocol as num_traits::ToPrimitive>::to_u16(&value).unwrap()
  71. }
  72. }