Enum HttpServerOption
Specifies optional features of the HTTP server.
Disabling unneeded features can speed up the server or reduce its memory usage.
The enum base type is
int
.
Enum members
Name | Description |
---|---|
none | |
parseURL | Fills the .path, .queryString fields in the request |
parseQueryString | Fills the .query field in the request |
parseFormBody | Fills the .form field in the request |
parseJsonBody | Fills the .json field in the request |
parseMultiPartBody | Enables use of the .nextPart() method in the request |
parseCookies | Fills the .cookies field in the request |
distribute | Distributes request processing among worker threads |
None | deprecated |
ParseURL | deprecated |
ParseQueryString | deprecated |
ParseFormBody | deprecated |
ParseJsonBody | deprecated |
ParseMultiPartBody | deprecated |
ParseCookies | deprecated |
Authors
Sönke Ludwig, Jan Krüger
Copyright
© 2012 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.