File: Internal.hs

package info (click to toggle)
haskell-http2 5.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 55,180 kB
  • sloc: haskell: 8,657; makefile: 5
file content (39 lines) | stat: -rw-r--r-- 722 bytes parent folder | download
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
module Network.HTTP2.Internal (
    -- * File
    module Network.HTTP2.H2.File,

    -- * Types
    Scheme,
    Authority,
    Path,

    -- * Request and response
    InpObj (..),
    InpBody,
    OutObj (..),
    OutBody (..),
    FileSpec (..),

    -- * Sender
    Next (..),
    BytesFilled,
    DynaNext,
    StreamingChunk (..),
    fillBuilderBodyGetNext,
    fillFileBodyGetNext,
    fillStreamBodyGetNext,

    -- * Trailer
    TrailersMaker,
    defaultTrailersMaker,
    NextTrailersMaker (..),
    runTrailersMaker,

    -- * Thread Manager
    module Network.HTTP2.H2.Manager,
) where

import Network.HTTP2.H2.File
import Network.HTTP2.H2.Manager
import Network.HTTP2.H2.Sender
import Network.HTTP2.H2.Types