package dns

  1. Overview
  2. Docs
type token =
  1. | EOF
  2. | EOL
  3. | SORIGIN
  4. | STTL
  5. | AT
  6. | DOT
  7. | SPACE
  8. | GENERIC
  9. | NUMBER of string
  10. | CHARSTRING of string
  11. | TYPE_A of string
  12. | TYPE_NS of string
  13. | TYPE_MD of string
  14. | TYPE_MF of string
  15. | TYPE_CNAME of string
  16. | TYPE_SOA of string
  17. | TYPE_MB of string
  18. | TYPE_MG of string
  19. | TYPE_MR of string
  20. | TYPE_NULL of string
  21. | TYPE_WKS of string
  22. | TYPE_PTR of string
  23. | TYPE_HINFO of string
  24. | TYPE_MINFO of string
  25. | TYPE_MX of string
  26. | TYPE_TXT of string
  27. | TYPE_RP of string
  28. | TYPE_AFSDB of string
  29. | TYPE_X25 of string
  30. | TYPE_ISDN of string
  31. | TYPE_RT of string
  32. | TYPE_NSAP of string
  33. | TYPE_NSAP_PTR of string
  34. | TYPE_SIG of string
  35. | TYPE_KEY of string
  36. | TYPE_PX of string
  37. | TYPE_GPOS of string
  38. | TYPE_AAAA of string
  39. | TYPE_LOC of string
  40. | TYPE_NXT of string
  41. | TYPE_EID of string
  42. | TYPE_NIMLOC of string
  43. | TYPE_SRV of string
  44. | TYPE_ATMA of string
  45. | TYPE_NAPTR of string
  46. | TYPE_KX of string
  47. | TYPE_CERT of string
  48. | TYPE_A6 of string
  49. | TYPE_DNAME of string
  50. | TYPE_SINK of string
  51. | TYPE_OPT of string
  52. | TYPE_APL of string
  53. | TYPE_DS of string
  54. | TYPE_SSHFP of string
  55. | TYPE_IPSECKEY of string
  56. | TYPE_RRSIG of string
  57. | TYPE_NSEC of string
  58. | TYPE_DNSKEY of string
  59. | TYPE_SPF of string
  60. | TYPE_UINFO of string
  61. | TYPE_UID of string
  62. | TYPE_GID of string
  63. | TYPE_TKEY of string
  64. | TYPE_TSIG of string
  65. | TYPE_MAILB of string
  66. | TYPE_MAILA of string
  67. | TYPE_GENERIC of string
  68. | CLASS_IN of string
  69. | CLASS_CS of string
  70. | CLASS_CH of string
  71. | CLASS_HS of string
val zfile : (Lexing.lexbuf -> token) -> Lexing.lexbuf -> unit