mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
net.httpserver: Fix usage of old connection API syntax
This commit is contained in:
parent
518fdb5c44
commit
f975e9028d
1 changed files with 3 additions and 3 deletions
|
@ -183,7 +183,7 @@ local function request_reader(request, data, startpos)
|
||||||
|
|
||||||
request.url = url_parse(request.path);
|
request.url = url_parse(request.path);
|
||||||
|
|
||||||
log("debug", method.." request for "..tostring(request.path) .. " on port "..request.handler.serverport());
|
log("debug", method.." request for "..tostring(request.path) .. " on port "..request.handler:serverport());
|
||||||
|
|
||||||
if request.onlystatus then
|
if request.onlystatus then
|
||||||
if not call_callback(request) then
|
if not call_callback(request) then
|
||||||
|
@ -201,7 +201,7 @@ end
|
||||||
|
|
||||||
-- The default handler for requests
|
-- The default handler for requests
|
||||||
default_handler = function (method, body, request)
|
default_handler = function (method, body, request)
|
||||||
log("debug", method.." request for "..tostring(request.path) .. " on port "..request.handler.serverport());
|
log("debug", method.." request for "..tostring(request.path) .. " on port "..request.handler:serverport());
|
||||||
return { status = "404 Not Found",
|
return { status = "404 Not Found",
|
||||||
headers = { ["Content-Type"] = "text/html" },
|
headers = { ["Content-Type"] = "text/html" },
|
||||||
body = "<html><head><title>Page Not Found</title></head><body>Not here :(</body></html>" };
|
body = "<html><head><title>Page Not Found</title></head><body>Not here :(</body></html>" };
|
||||||
|
@ -229,7 +229,7 @@ function destroy_request(request)
|
||||||
else
|
else
|
||||||
log("debug", "Request has no destroy callback");
|
log("debug", "Request has no destroy callback");
|
||||||
end
|
end
|
||||||
request.handler.close()
|
request.handler:close()
|
||||||
if request.conn then
|
if request.conn then
|
||||||
listener.ondisconnect(request.handler, "closed");
|
listener.ondisconnect(request.handler, "closed");
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue