summaryrefslogtreecommitdiffhomepage
path: root/Network/DNS/Types.hs
blob: 0f00a610df37df70b632ba545504364f8e4175fc (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{-|
  Data types for DNS Query and Response. For more information, see <http://www.ietf.org/rfc/rfc1035>.
-}

module Network.DNS.Types (
    Domain
  , TYPE (..), intToType, typeToInt, toType
  , DNSFormat, header, question, answer, authority, additional
  , DNSHeader, identifier, flags, qdCount, anCount, nsCount, arCount
  , DNSFlags, qOrR, opcode, authAnswer, trunCation, recDesired, recAvailable, rcode
  , QorR (..)
  , OPCODE (..)
  , RCODE (..)
  , ResourceRecord, rrname, rrtype, rrttl, rdlen, rdata
  , Question, qname, qtype, makeQuestion
  , RDATA (..)
  ) where

import Network.DNS.Internal