net.http.server: Fix Keep-Alive requests with HTTP 1.0
|
Kim Alvefur |
2013-07-22 |
mod_c2s, mod_s2s, net.http, net.http.server: Improve tracebacks (omit traceback function), to make it clearer where an error occured
|
Matthew Wild |
2013-04-22 |
net.server.http: Add a comment
|
Matthew Wild |
2013-04-22 |
net.server.http: Ensure that event map cannot grow forever (limit to 10K wildcard-only entries)
|
Matthew Wild |
2013-04-22 |
net.http.server: The correct Connection header value to look for is Keep-Alive, not keep-alive.
|
Waqas Hussain |
2013-04-17 |
net.http.server: add API to allow firing events directly on the server.
|
Marco Cirillo |
2013-04-07 |
net.http.server: Don't overwrite existing response.headers when returning a response object from a HTTP handler (waqas says it's wrong)
|
Matthew Wild |
2013-03-31 |
net.http.server: Ensure HTTP callbacks are never called recursively for pipelined requests.
|
Waqas Hussain |
2013-02-26 |
net.http.server: Properly handle persistent connections
|
Florian Zeitz |
2013-01-12 |
net.http.server: Code cleanup/adjustment now that send_response() accepts response.body
|
Matthew Wild |
2012-04-28 |
net.http.server: Use response.body if it exists and body is not specified to send_response
|
Matthew Wild |
2012-04-28 |
net.http.server: Remove unused imports and variables (fixes traceback due to removed net.httpserver)
|
Matthew Wild |
2012-04-28 |
net.http.server: Try default_host if client sent no host anywhere, otherwise... fail. It's 2012.
|
Matthew Wild |
2012-04-28 |
net.http.server: Fix traceback on missing host header (thanks darkrain)
|
Matthew Wild |
2012-04-27 |
net.http.server, mod_http: Support http_default_host config option to specify where to direct requests for unknown HTTP vhosts
|
Matthew Wild |
2012-04-27 |
net.http.server: Improve comment
|
Matthew Wild |
2012-04-27 |
net.http.server: Remove unused variable
|
Matthew Wild |
2012-04-27 |
net.http.server: Correctly cache results of handler indexing, and also cache failures
|
Matthew Wild |
2012-04-27 |
Merge with backout
|
Matthew Wild |
2012-04-26 |
Revert 98bfebb38705, moved to net.http.parser in 4fc99f1b7570
|
Matthew Wild |
2012-04-26 |
net.http.server: Fire http-error 400 if request fails sanity checks
|
Matthew Wild |
2012-04-26 |
net.http.server: Make error handling overrideable via 'http-error' event
|
Matthew Wild |
2012-04-26 |
net.server.http: Parse absolute URIs in requests (thanks Maranda)
|
Matthew Wild |
2012-04-26 |
net.http.server: Expose events object (for debug purposes)
|
Matthew Wild |
2012-04-26 |
net.http.server: Lower score of wildcard handlers to ensure specific handlers beat them
|
Matthew Wild |
2012-04-26 |
net.http.server: Fix to compare priority if path lengths are the same (logic fail)
|
Matthew Wild |
2012-04-26 |
net.http.server: Support for on_destroy callback on response objects, and a 'finished' flag to say when they are destroyed (responded to or connection closed)
|
Matthew Wild |
2012-04-25 |
net.http.server: Small fix to comment
|
Matthew Wild |
2012-04-25 |
net.http.server: Remove legacy compatibility
|
Matthew Wild |
2012-04-25 |
net.http.server: Handle results returned by handlers, and send as a response. Also removes explicit firing of '*', which can now be done via wildcard events.
|
Matthew Wild |
2012-04-24 |