http2-5.4.0: HTTP/2 library
Safe HaskellNone
LanguageHaskell2010

Network.HTTP2.Server.Internal

Contents

Synopsis

Documentation

newtype Request #

Request from client.

Constructors

Request InpObj 

Instances

Instances details
Show Request 
Instance details

Defined in Network.HTTP.Semantics.Server.Internal

newtype Response #

Response from server.

Constructors

Response OutObj 

Instances

Instances details
Show Response 
Instance details

Defined in Network.HTTP.Semantics.Server.Internal

data Config Source #

HTTP/2 configuration.

Constructors

Config 

Fields

data ServerConfig Source #

Server configuration

Constructors

ServerConfig 

Fields

Instances

Instances details
Show ServerConfig Source # 
Instance details

Defined in Network.HTTP2.Server.Run

Eq ServerConfig Source # 
Instance details

Defined in Network.HTTP2.Server.Run

data Aux #

Additional information.

Constructors

Aux 

Fields

Low level

data Stream Source #

Instances

Instances details
Show Stream Source # 
Instance details

Defined in Network.HTTP2.H2.Types

data ServerIO a Source #

Constructors

ServerIO 

Fields

runIO :: ServerConfig -> Config -> (ServerIO Stream -> IO (IO ())) -> IO () Source #

Launching a receiver and a sender without workers. Any frames can be sent with sioWriteBytes.