# Packages
No description provided by the author
# Functions
NewBodyReader creates a BodyReader.
NewClientProcessor .
NewEmptyProcessor .
NewEngine .
NewParser .
NewResponse .
NewServer .
NewServerProcessor .
NewServerTLS .
No description provided by the author
# Constants
DefaultBlockingReadBufferSize sets to 4k(<= goroutine stack size).
DefaultHTTPReadLimit .
DefaultIOMod represents the default IO Mod used by iohttp.Engine.
DefaultKeepaliveTime .
DefaultMaxBlockingOnline represents the default num of connections that will be dispatched to ChanListner A.
DefaultMaxLoad .
DefaultMaxWebsocketFramePayloadSize .
IOModBlocking represents that the server serve each connection with one goroutine at least to handle reading.
IOModMixed represents that the server creates listener mux to handle different connections, 1 listener will be dispatch to two ChanListener: If ChanListener A's online is less than its max online num, the new connection will be dispatch to this listener A and served by single goroutine; Else the new connection will be dispatch to ChanListener B and served by poller.
IOModNonBlocking represents that the server serve all the connections by poller goroutines to handle io events.
MaxInt .
MaxUint .
# Variables
ErrClientClosed .
ErrClientTimeout .
ErrClientUnsupportedSchema .
ErrCRExpected .
ErrInvalidCharInHeader .
ErrInvalidChunkSize .
ErrInvalidContentLength .
ErrInvalidCRLF .
ErrInvalidFragment .
ErrInvalidH2HeaderR .
ErrInvalidH2SM .
ErrInvalidHost .
ErrInvalidHTTPStatus .
ErrInvalidHTTPStatusCode .
ErrInvalidHTTPVersion .
ErrInvalidMethod .
ErrInvalidPath .
ErrInvalidPort .
ErrInvalidQueryString .
ErrInvalidRequestURI .
ErrLFExpected .
ErrNilConn .
No description provided by the author
ErrTooLong .
ErrTrailerExpected .
ErrUnexpectedContentLength .
No description provided by the author
# Structs
BodyReader .
Client .
ClientConn .
ClientProcessor .
ConfAddr .
Config .
EmptyProcessor .
Engine .
Parser .
Response represents the server side of an HTTP response.
Server .
ServerProcessor .
# Interfaces
Processor .