aboutsummaryrefslogtreecommitdiffstats
path: root/net/http
Commit message (Collapse)AuthorAgeFilesLines
...
* net.server.http: Ensure that event map cannot grow forever (limit to 10K ↵Matthew Wild2013-04-221-0/+8
| | | | wildcard-only entries)
* net.http.server: The correct Connection header value to look for is ↵Waqas Hussain2013-04-171-1/+1
| | | | Keep-Alive, not keep-alive.
* net.http.parser: Remove accidentally-committed debuggingMatthew Wild2013-04-151-1/+0
|
* net.http.parser: Fix off-by-one error in chunked encoding parserMatthew Wild2013-04-151-1/+2
|
* net.http.parser: Fix chunked encoding response parsing, and make it more robustMatthew Wild2013-04-111-15/+20
|
* net.http.parser: Convert status_code to a number before trying to compare it ↵Matthew Wild2013-04-111-0/+1
| | | | to numbers
* net.http.parser: Break when no more usable data in buffer (client part of ↵Matthew Wild2013-04-111-0/+2
| | | | e5ec60dfb202)
* net.http.parser: Depend on util.http instead of net.http for urlencodeMatthew Wild2013-04-111-1/+1
|
* net.http.server: add API to allow firing events directly on the server.Marco Cirillo2013-04-071-0/+3
|
* net.http.server: Don't overwrite existing response.headers when returning a ↵Matthew Wild2013-03-311-1/+7
| | | | response object from a HTTP handler (waqas says it's wrong)
* net.http.server: Ensure HTTP callbacks are never called recursively for ↵Waqas Hussain2013-02-261-9/+10
| | | | pipelined requests.
* net.http.parser: Ensure full URL in status line contains a path.Waqas Hussain2013-02-081-1/+1
|
* net.http.parser: Fix traceback on invalid URL in status line.Waqas Hussain2013-02-081-0/+1
|
* net.http.server: Properly handle persistent connectionsFlorian Zeitz2013-01-121-3/+14
|
* net.http.parser: Abort if no status line is received.Kim Alvefur2013-01-081-0/+1
|
* net.http.parser: Skip url.parse when we don't have a full URL (also fixes ↵Waqas Hussain2012-12-211-1/+8
| | | | traceback on paths starting with '//').
* net.http.parser: Fix syntax error introduced in c5edb08fc7cb.Waqas Hussain2012-12-031-1/+1
|
* net.http.parser: Collapse multiple consecutive slashes in a path to a single ↵Matthew Wild2012-11-291-1/+1
| | | | slash
* net.http.parser: Break loop when no more usable data in bufferMatthew Wild2012-05-251-0/+2
|
* net.http.parser: Keep the Host header no host is present in the URIKim Alvefur2012-05-151-1/+1
|
* net.http.parser: Do full URL decoding and parsing (e.g. adds ↵Matthew Wild2012-05-121-5/+7
| | | | request.url.query when present)
* net.http.server: Code cleanup/adjustment now that send_response() accepts ↵Matthew Wild2012-04-281-3/+1
| | | | response.body
* net.http.server: Use response.body if it exists and body is not specified to ↵Matthew Wild2012-04-281-1/+1
| | | | send_response
* net.http.server: Remove unused imports and variables (fixes traceback due to ↵Matthew Wild2012-04-281-4/+2
| | | | removed net.httpserver)
* net.http.server: Try default_host if client sent no host anywhere, ↵Matthew Wild2012-04-281-4/+4
| | | | otherwise... fail. It's 2012.
* net.http.server: Fix traceback on missing host header (thanks darkrain)Matthew Wild2012-04-281-2/+1
|
* net.http.server, mod_http: Support http_default_host config option to ↵Matthew Wild2012-04-271-41/+56
| | | | specify where to direct requests for unknown HTTP vhosts
* net.http.server: Improve commentMatthew Wild2012-04-271-1/+1
|
* net.http.server: Remove unused variableMatthew Wild2012-04-271-1/+0
|
* net.http.server: Correctly cache results of handler indexing, and also cache ↵Matthew Wild2012-04-271-10/+14
| | | | failures
* net.http.codes: Add missing 418 status codeMatthew Wild2012-04-271-0/+1
|
* mod_http_files, net.http.parser: Move path normalization to net.http.parser ↵Matthew Wild2012-04-261-1/+19
| | | | so that all modules can benefit
* Merge with backoutMatthew Wild2012-04-261-4/+0
|\
| * Revert 98bfebb38705, moved to net.http.parser in 4fc99f1b7570Matthew Wild2012-04-261-4/+0
| |
* | net.http.server: Fire http-error 400 if request fails sanity checksMatthew Wild2012-04-261-1/+8
| |
* | net.http.parser: Handle full URLs in status line.Waqas Hussain2012-04-261-1/+6
| |
* | net.http.server: Make error handling overrideable via 'http-error' eventMatthew Wild2012-04-261-4/+12
|/
* net.server.http: Parse absolute URIs in requests (thanks Maranda)Matthew Wild2012-04-261-0/+4
|
* net.http.server: Expose events object (for debug purposes)Matthew Wild2012-04-261-0/+1
|
* net.http.server: Lower score of wildcard handlers to ensure specific ↵Matthew Wild2012-04-261-1/+1
| | | | handlers beat them
* net.http.server: Fix to compare priority if path lengths are the same (logic ↵Matthew Wild2012-04-261-1/+1
| | | | fail)
* net.http.server: Support for on_destroy callback on response objects, and a ↵Matthew Wild2012-04-251-0/+14
| | | | 'finished' flag to say when they are destroyed (responded to or connection closed)
* net.http.server: Small fix to commentMatthew Wild2012-04-251-1/+1
|
* net.http.server: Remove legacy compatibilityMatthew Wild2012-04-251-57/+4
|
* net.http.server: Handle results returned by handlers, and send as a ↵Matthew Wild2012-04-241-12/+20
| | | | response. Also removes explicit firing of '*', which can now be done via wildcard events.
* net.http.server: Remove debug messageMatthew Wild2012-04-241-1/+0
|
* net.http.server: Support for wildcard events (events that end with '/*')Matthew Wild2012-04-231-0/+51
|
* net.http.server: Fix legacy net.httpserver fallback (httpserver is no longer ↵Waqas Hussain2012-04-221-2/+3
| | | | a global).
* net.http.server: Fire global HTTP event when no specific handlers available.Waqas Hussain2012-04-211-0/+1
|
* net.http.server: Missing <title/> in 404 Not Found response.Waqas Hussain2012-04-211-1/+1
|