# HG changeset patch # User Waqas Hussain # Date 1292772538 -18000 # Node ID 5924197aa163f64606def56aeac8d8ff8ce0d2f4 # Parent a34333fcae72b6679834d735b02b20fb2e05b052 util.httpstream: For HTTP client responses, changing properties responseversion and responseheaders to httpversion and httpheaders, to match HTTP server requests. diff -r a34333fcae72 -r 5924197aa163 util/httpstream.lua --- a/util/httpstream.lua Sun Dec 19 20:27:13 2010 +0500 +++ b/util/httpstream.lua Sun Dec 19 20:28:58 2010 +0500 @@ -104,9 +104,12 @@ success_cb({ code = status_code; + httpversion = httpversion; + headers = headers; + body = body; + -- COMPAT the properties below are deprecated responseversion = httpversion; responseheaders = headers; - body = body; }); end else coroutine.yield("unknown-parser-type"); end