module Network.DNS.Named.Config ( Config(..) , defaultConfig ) where import Network.Socket data Config = Config { cnfServerAddress :: !SockAddr } deriving Show defaultConfig :: Config defaultConfig = Config { cnfServerAddress = SockAddrInet 42 iNADDR_ANY }