1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134
|
-- | Data types for DNS Query and Response.
-- For more information, see <http://www.ietf.org/rfc/rfc1035>.
module Network.DNS.Types (
-- * Resource Records
ResourceRecord (..)
, Answers
, AuthorityRecords
, AdditionalRecords
-- ** Types
, Domain
, CLASS
, classIN
, TTL
-- ** Resource Record Types
, TYPE (
A
, NS
, CNAME
, SOA
, NULL
, PTR
, MX
, TXT
, AAAA
, SRV
, DNAME
, OPT
, DS
, RRSIG
, NSEC
, DNSKEY
, NSEC3
, NSEC3PARAM
, TLSA
, CDS
, CDNSKEY
, CSYNC
, AXFR
, ANY
, CAA
)
, fromTYPE
, toTYPE
-- ** Resource Data
, RData (..)
, RD_RRSIG(..)
, dnsTime
-- * DNS Message
, DNSMessage (..)
-- ** Query
, makeQuery
, makeEmptyQuery
, defaultQuery
-- ** Query Controls
, QueryControls
, rdFlag
, adFlag
, cdFlag
, doFlag
, ednsEnabled
, ednsSetVersion
, ednsSetUdpSize
, ednsSetOptions
-- *** Flag and OData control operations
, FlagOp(..)
, ODataOp(..)
-- ** Response
, defaultResponse
, makeResponse
-- ** DNS Header
, DNSHeader (..)
, Identifier
-- *** DNS flags
, DNSFlags (..)
, QorR (..)
, defaultDNSFlags
-- *** OPCODE and RCODE
, OPCODE (..)
, fromOPCODE
, toOPCODE
, RCODE (
NoErr
, FormatErr
, ServFail
, NameErr
, NotImpl
, Refused
, YXDomain
, YXRRSet
, NXRRSet
, NotAuth
, NotZone
, BadVers
, BadKey
, BadTime
, BadMode
, BadName
, BadAlg
, BadTrunc
, BadCookie
, BadRCODE
)
, fromRCODE
, toRCODE
-- ** EDNS Pseudo-Header
, EDNSheader(..)
, ifEDNS
, mapEDNS
-- *** EDNS record
, EDNS(..)
, defaultEDNS
, maxUdpSize
, minUdpSize
-- *** EDNS options
, OData (..)
, OptCode (
ClientSubnet
, DAU
, DHU
, N3U
, NSID
)
, fromOptCode
, toOptCode
-- ** DNS Body
, Question (..)
-- * DNS Error
, DNSError (..)
-- * Other types
, Mailbox
) where
import Network.DNS.Types.Internal
|