-- | Data types for DNS Query and Response. -- For more information, see . module Network.DNS.Types ( -- * Domain Domain -- * Resource Records , ResourceRecord (..) , RData (..), OData (..) -- ** Resource Record Type , TYPE (..), intToType, typeToInt , OPTTYPE (..), intToOptType, optTypeToInt -- * DNS Error , DNSError (..) -- * DNS Message , DNSMessage (..) , DNSFormat -- * DNS Header , DNSHeader (..) -- * DNS Flags , DNSFlags (..) -- * DNS Body , QorR (..) , OPCODE (..) , RCODE (..) , Question (..) , responseA, responseAAAA ) where import Network.DNS.Internal