mod_adhoc: Add support for commands only executable by global administrators
[prosody.git] / util / httpstream.lua
index c9f2f691627c7d03478a7f7b5f3b9954ed848632..bdc3fce776c45827ffdf7cd533d7df69dc1a4cdc 100644 (file)
@@ -104,9 +104,12 @@ local function parser(success_cb, parser_type, options_cb)
                        
                        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