Legend:
Library
Module
Module type
Parameter
Class
Class type
Library
Module
Module type
Parameter
Class
Class type
val int_to_dnssec_alg : int -> dnssec_alg option
type q_type =
| Q_A
| Q_NS
| Q_MD
| Q_MF
| Q_CNAME
| Q_SOA
| Q_MB
| Q_MG
| Q_MR
| Q_NULL
| Q_WKS
| Q_PTR
| Q_HINFO
| Q_MINFO
| Q_MX
| Q_TXT
| Q_RP
| Q_AFSDB
| Q_X25
| Q_ISDN
| Q_RT
| Q_NSAP
| Q_NSAPPTR
| Q_SIG
| Q_KEY
| Q_PX
| Q_GPOS
| Q_AAAA
| Q_LOC
| Q_NXT
| Q_EID
| Q_NIMLOC
| Q_SRV
| Q_ATMA
| Q_NAPTR
| Q_KM
| Q_CERT
| Q_A6
| Q_DNAME
| Q_SINK
| Q_OPT
| Q_APL
| Q_DS
| Q_SSHFP
| Q_IPSECKEY
| Q_RRSIG
| Q_NSEC
| Q_DNSKEY
| Q_NSEC3
| Q_NSEC3PARAM
| Q_SPF
| Q_UINFO
| Q_UID
| Q_GID
| Q_UNSPEC
| Q_AXFR
| Q_MAILB
| Q_MAILA
| Q_ANY_TYP
| Q_TA
| Q_DLV
val int_to_q_type : int -> q_type option
val q_type_to_int : q_type -> int
type rr_type =
| RR_A
| RR_NS
| RR_MD
| RR_MF
| RR_CNAME
| RR_SOA
| RR_MB
| RR_MG
| RR_MR
| RR_NULL
| RR_WKS
| RR_PTR
| RR_HINFO
| RR_MINFO
| RR_MX
| RR_TXT
| RR_RP
| RR_AFSDB
| RR_X25
| RR_ISDN
| RR_RT
| RR_NSAP
| RR_NSAPPTR
| RR_SIG
| RR_KEY
| RR_PX
| RR_GPOS
| RR_AAAA
| RR_LOC
| RR_NXT
| RR_EID
| RR_NIMLOC
| RR_SRV
| RR_ATMA
| RR_NAPTR
| RR_KM
| RR_CERT
| RR_A6
| RR_DNAME
| RR_SINK
| RR_OPT
| RR_APL
| RR_DS
| RR_SSHFP
| RR_IPSECKEY
| RR_RRSIG
| RR_NSEC
| RR_DNSKEY
| RR_NSEC3
| RR_NSEC3PARAM
| RR_SPF
| RR_UINFO
| RR_UID
| RR_GID
| RR_UNSPEC
type rdata =
| A of Cstruct.ipv4
| AAAA of string
| AFSDB of Cstruct.uint16 * Name.domain_name
| CNAME of Name.domain_name
| DNSKEY of Cstruct.uint16 * dnssec_alg * string
| DS of Cstruct.uint16 * dnssec_alg * digest_alg * string
| HINFO of string * string
| IPSECKEY of Cstruct.byte * gateway_tc * ipseckey_alg * gateway * string
| ISDN of string * string option
| MB of Name.domain_name
| MD of Name.domain_name
| MF of Name.domain_name
| MG of Name.domain_name
| MINFO of Name.domain_name * Name.domain_name
| MR of Name.domain_name
| MX of Cstruct.uint16 * Name.domain_name
| NS of Name.domain_name
| NSEC of Name.domain_name * type_bit_maps
| NSEC3 of hash_alg
* Cstruct.byte
* Cstruct.uint16
* Cstruct.byte
* string
* Cstruct.byte
* string
* type_bit_maps
| NSEC3PARAM of hash_alg * Cstruct.byte * Cstruct.uint16 * Cstruct.byte * string
| PTR of Name.domain_name
| RP of Name.domain_name * Name.domain_name
| RRSIG of rr_type
* dnssec_alg
* Cstruct.byte
* int32
* int32
* int32
* Cstruct.uint16
* Name.domain_name
* string
| RT of Cstruct.uint16 * Name.domain_name
| SOA of Name.domain_name
* Name.domain_name
* int32
* int32
* int32
* int32
* int32
| SRV of Cstruct.uint16 * Cstruct.uint16 * Cstruct.uint16 * Name.domain_name
| SSHFP of pubkey_alg * fp_type * string
| TXT of string list
| UNKNOWN of int * string
| WKS of int32 * Cstruct.byte * string
| X25 of string
val rdata_to_string : rdata -> string
val parse_rdata :
(int, Name.label) Hashtbl.t ->
int ->
rr_type ->
Cstruct.buf ->
rdata
val rr_class_to_string : rr_class -> string
val rr_to_string : rr -> string
val parse_rr :
(int, Name.label) Hashtbl.t ->
int ->
Cstruct.buf ->
rr * (int * Cstruct.buf)
val q_type_to_string : q_type -> string
val string_to_q_type : string -> q_type option
val q_class_to_string : q_class -> string
val string_to_q_class : string -> q_class option
val question_to_string : question -> string
val parse_question :
(int, Name.label) Hashtbl.t ->
int ->
Cstruct.buf ->
question * (int * Cstruct.buf)
val opcode_to_string : opcode -> string
val rcode_to_string : rcode -> string
val to_string : t -> string
val parse : (int, Name.label) Hashtbl.t -> Cstruct.buf -> t
val marshal : Cstruct.buf -> t -> Cstruct.buf