mirror of
https://github.com/bjc/prosody.git
synced 2025-04-04 21:57:45 +03:00
net.httpserver: Fix to work with new server API
This commit is contained in:
parent
abb55058b0
commit
7fa0954aaf
1 changed files with 1 additions and 1 deletions
|
@ -216,7 +216,7 @@ end
|
|||
function new_request(handler)
|
||||
return { handler = handler, conn = handler.socket,
|
||||
write = function (...) return handler:write(...); end, state = "request",
|
||||
server = http_servers[handler.serverport()],
|
||||
server = http_servers[handler:serverport()],
|
||||
send = send_response,
|
||||
destroy = destroy_request,
|
||||
id = tostring{}:match("%x+$")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue