mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 06:07:37 +03:00
net.httpserver, net.http: Update for new net.server API (untested)
This commit is contained in:
parent
31dd611284
commit
54d5d4f69d
2 changed files with 4 additions and 4 deletions
|
@ -152,7 +152,7 @@ function request(u, ex, callback)
|
||||||
end
|
end
|
||||||
|
|
||||||
req.handler, req.conn = server.wrapclient(socket.tcp(), req.host, req.port or 80, listener, "*a");
|
req.handler, req.conn = server.wrapclient(socket.tcp(), req.host, req.port or 80, listener, "*a");
|
||||||
req.write = req.handler.write;
|
req.write = function (...) return req.handler:write(...); end
|
||||||
req.conn:settimeout(0);
|
req.conn:settimeout(0);
|
||||||
local ok, err = req.conn:connect(req.host, req.port or 80);
|
local ok, err = req.conn:connect(req.host, req.port or 80);
|
||||||
if not ok and err ~= "timeout" then
|
if not ok and err ~= "timeout" then
|
||||||
|
@ -200,7 +200,7 @@ end
|
||||||
function destroy_request(request)
|
function destroy_request(request)
|
||||||
if request.conn then
|
if request.conn then
|
||||||
request.handler.close()
|
request.handler.close()
|
||||||
listener.disconnect(request.conn, "closed");
|
listener.ondisconnect(request.conn, "closed");
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
|
@ -209,7 +209,7 @@ end
|
||||||
|
|
||||||
function new_request(handler)
|
function new_request(handler)
|
||||||
return { handler = handler, conn = handler.socket,
|
return { handler = handler, conn = handler.socket,
|
||||||
write = handler.write, state = "request",
|
write = function (...) return handler:write(...); end, state = "request",
|
||||||
server = http_servers[handler.serverport()],
|
server = http_servers[handler.serverport()],
|
||||||
send = send_response,
|
send = send_response,
|
||||||
destroy = destroy_request,
|
destroy = destroy_request,
|
||||||
|
@ -230,7 +230,7 @@ function destroy_request(request)
|
||||||
end
|
end
|
||||||
request.handler.close()
|
request.handler.close()
|
||||||
if request.conn then
|
if request.conn then
|
||||||
listener.disconnect(request.handler, "closed");
|
listener.ondisconnect(request.handler, "closed");
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue