1{-# OPTIONS_HADDOCK not-home #-}
2-- | Note that this is essentially the \"kitchen sink\" export module,
3-- including many functions intended only to be used internally by this
4-- package. No API stability is guaranteed for this module. If you see
5-- functions here which you believe should be promoted to a stable API, please
6-- contact the author.
7module Network.HTTP.Client.Internal
8    ( -- * Low-level response body handling
9      module Network.HTTP.Client.Body
10      -- * Raw connection handling
11    , module Network.HTTP.Client.Connection
12      -- * Cookies
13    , module Network.HTTP.Client.Cookies
14      -- * Performing requests
15    , module Network.HTTP.Client.Core
16      -- * Parse response headers
17    , module Network.HTTP.Client.Headers
18      -- * Request helper functions
19    , module Network.HTTP.Client.Request
20      -- * Low-level response body handling
21    , module Network.HTTP.Client.Response
22      -- * Manager
23    , module Network.HTTP.Client.Manager
24      -- * All types
25    , module Network.HTTP.Client.Types
26      -- * Various utilities
27    , module Network.HTTP.Client.Util
28    , dummyManaged
29    ) where
30
31import Network.HTTP.Client.Body
32import Network.HTTP.Client.Connection
33import Network.HTTP.Client.Cookies
34import Network.HTTP.Client.Core
35import Network.HTTP.Client.Headers
36import Network.HTTP.Client.Manager
37import Network.HTTP.Client.Request
38import Network.HTTP.Client.Response
39import Network.HTTP.Client.Types
40import Network.HTTP.Client.Util
41import Data.KeyedPool (dummyManaged)
42