Lucu-0.1: HTTP Daemonic LibraryContentsIndex
Network.HTTP.Lucu.Request
Description

Definition of things related on HTTP request.

In general you don't have to use this module directly.

Synopsis
data Method
= OPTIONS
| GET
| HEAD
| POST
| PUT
| DELETE
| TRACE
| CONNECT
| ExtensionMethod !String
data Request = Request {
reqMethod :: !Method
reqURI :: !URI
reqVersion :: !HttpVersion
reqHeaders :: !Headers
}
requestP :: Parser Request
Documentation
data Method
This is the definition of HTTP request methods, which shouldn't require any description.
Constructors
OPTIONS
GET
HEAD
POST
PUT
DELETE
TRACE
CONNECT
ExtensionMethod !String
show/hide Instances
Eq Method
Show Method
data Request
This is the definition of HTTP reqest.
Constructors
Request
reqMethod :: !Method
reqURI :: !URI
reqVersion :: !HttpVersion
reqHeaders :: !Headers
show/hide Instances
Eq Request
Show Request
HasHeaders Request
requestP :: Parser Request
Produced by Haddock version 2.1.0