Matthew Wild
878efeecd5
Merge 0.9->0.10
2014-08-28 09:23:24 +01:00
Daurnimator
0f866905fd
net.http.server: Fix some typos introduced in 420c0d3b8583.
2014-04-15 14:51:49 -04:00
Daurnimator
75c7b9704a
net.http.server: Add prepare_header() and finish_response() to allow sending chunked responses via the API
2014-04-15 18:07:45 +01:00
Florian Zeitz
1d833bb807
Remove all trailing whitespace
2013-08-09 17:48:21 +02:00
Kim Alvefur
74b83382ab
net.http.server: Fix Keep-Alive requests with HTTP 1.0
2013-07-22 17:28:37 +02:00
Matthew Wild
4602591c38
mod_c2s, mod_s2s, net.http, net.http.server: Improve tracebacks (omit traceback function), to make it clearer where an error occured
2013-04-22 12:35:52 +01:00
Matthew Wild
c981dcb50d
net.server.http: Add a comment
2013-04-22 12:25:00 +01:00
Matthew Wild
a2fd9431f4
net.server.http: Ensure that event map cannot grow forever (limit to 10K wildcard-only entries)
2013-04-22 12:24:42 +01:00
Waqas Hussain
76d4f07d2b
net.http.server: The correct Connection header value to look for is Keep-Alive, not keep-alive.
2013-04-17 15:28:20 -04:00
Matthew Wild
427b82db0f
net.http.parser: Remove accidentally-committed debugging
2013-04-15 21:25:59 +01:00
Matthew Wild
91b727be71
net.http.parser: Fix off-by-one error in chunked encoding parser
2013-04-15 21:21:57 +01:00
Matthew Wild
fec86f72cf
net.http.parser: Fix chunked encoding response parsing, and make it more robust
2013-04-11 20:01:03 +01:00
Matthew Wild
1ebc90c25b
net.http.parser: Convert status_code to a number before trying to compare it to numbers
2013-04-11 19:58:53 +01:00
Matthew Wild
70a407116f
net.http.parser: Break when no more usable data in buffer (client part of e5ec60dfb202)
2013-04-11 17:39:10 +01:00
Matthew Wild
2f31951668
net.http.parser: Depend on util.http instead of net.http for urlencode
2013-04-11 17:37:37 +01:00
Marco Cirillo
d6c4bffd9b
net.http.server: add API to allow firing events directly on the server.
2013-04-07 12:23:29 +00:00
Matthew Wild
3c45ca81a2
net.http.server: Don't overwrite existing response.headers when returning a response object from a HTTP handler (waqas says it's wrong)
2013-03-31 13:45:04 +01:00
Waqas Hussain
db6081d6e0
net.http.server: Ensure HTTP callbacks are never called recursively for pipelined requests.
2013-02-26 19:41:52 +05:00
Waqas Hussain
42c8d5bd24
net.http.parser: Ensure full URL in status line contains a path.
2013-02-08 00:27:59 +05:00
Waqas Hussain
4337cb5267
net.http.parser: Fix traceback on invalid URL in status line.
2013-02-08 00:18:40 +05:00
Florian Zeitz
2eddb12845
net.http.server: Properly handle persistent connections
2013-01-12 17:26:50 +01:00
Kim Alvefur
a6731c13d1
net.http.parser: Abort if no status line is received.
2013-01-08 13:33:01 +01:00
Waqas Hussain
42907ced08
net.http.parser: Skip url.parse when we don't have a full URL (also fixes traceback on paths starting with '//').
2012-12-21 13:37:39 +05:00
Waqas Hussain
8714ad93a8
net.http.parser: Fix syntax error introduced in c5edb08fc7cb.
2012-12-03 10:01:06 +05:00
Matthew Wild
89d1d6cccf
net.http.parser: Collapse multiple consecutive slashes in a path to a single slash
2012-11-29 07:38:00 +05:00
Kim Alvefur
3ea6ca7195
net.http.files: Make into standalone library
2019-04-05 17:09:03 +02:00
Kim Alvefur
6f6ac91056
net.http.files: Copy of mod_http_files
...
The intent is to make it easier to reuse and simplify mod_http_files.
Currently modules will use the serve() function exported by
mod_http_files in order to serve their own files. This makes it unclear
whether mod_http_files should be doing anything on its own. Moving the
logic into a separate module should help here, as well as make re-use
outside of prosody easier.
2019-04-05 16:10:51 +02:00
Matthew Wild
1d00578154
net.http.parser: Break loop when no more usable data in buffer
2012-05-25 02:32:33 +01:00
Kim Alvefur
2a56213eeb
net.http.parser: Keep the Host header no host is present in the URI
2012-05-15 14:00:57 +02:00
Matthew Wild
6206f46784
net.http.parser: Do full URL decoding and parsing (e.g. adds request.url.query when present)
2012-05-12 03:09:52 +01:00
Matthew Wild
d4578e0677
net.http.server: Code cleanup/adjustment now that send_response() accepts response.body
2012-04-28 19:36:57 +01:00
Matthew Wild
cc6bcc5877
net.http.server: Use response.body if it exists and body is not specified to send_response
2012-04-28 19:36:09 +01:00
Matthew Wild
6229968685
net.http.server: Remove unused imports and variables (fixes traceback due to removed net.httpserver)
2012-04-28 14:27:48 +01:00
Matthew Wild
7f6dcc373f
net.http.server: Try default_host if client sent no host anywhere, otherwise... fail. It's 2012.
2012-04-28 01:13:49 +01:00
Matthew Wild
e8746c77da
net.http.server: Fix traceback on missing host header (thanks darkrain)
2012-04-28 00:51:36 +01:00
Matthew Wild
e865b1b3fe
net.http.server, mod_http: Support http_default_host config option to specify where to direct requests for unknown HTTP vhosts
2012-04-27 23:11:23 +01:00
Matthew Wild
14dcbf13d5
net.http.server: Improve comment
2012-04-27 22:37:56 +01:00
Matthew Wild
ecc47f2920
net.http.server: Remove unused variable
2012-04-27 20:01:21 +01:00
Matthew Wild
6cc3d15683
net.http.server: Correctly cache results of handler indexing, and also cache failures
2012-04-27 20:00:06 +01:00
Matthew Wild
0629f92234
net.http.codes: Add missing 418 status code
2012-04-27 18:54:51 +01:00
Matthew Wild
7c5c2aea2c
mod_http_files, net.http.parser: Move path normalization to net.http.parser so that all modules can benefit
2012-04-26 16:48:16 +01:00
Matthew Wild
26768dfb4d
Merge with backout
2012-04-26 16:25:17 +01:00
Matthew Wild
887ca5f9fe
Revert 98bfebb38705, moved to net.http.parser in 4fc99f1b7570
2012-04-26 16:25:11 +01:00
Matthew Wild
a54e59650f
net.http.server: Fire http-error 400 if request fails sanity checks
2012-04-26 16:11:08 +01:00
Waqas Hussain
b0b093e726
net.http.parser: Handle full URLs in status line.
2012-04-26 20:07:13 +05:00
Matthew Wild
8edd8e0e8d
net.http.server: Make error handling overrideable via 'http-error' event
2012-04-26 15:14:19 +01:00
Matthew Wild
e3433dca1d
net.server.http: Parse absolute URIs in requests (thanks Maranda)
2012-04-26 15:05:05 +01:00
Matthew Wild
2415fcd5c2
net.http.server: Expose events object (for debug purposes)
2012-04-26 06:58:57 +01:00
Matthew Wild
dbb3dc6a01
net.http.server: Lower score of wildcard handlers to ensure specific handlers beat them
2012-04-26 06:47:17 +01:00
Matthew Wild
37840f043c
net.http.server: Fix to compare priority if path lengths are the same (logic fail)
2012-04-26 04:24:43 +01:00