mirror of
https://github.com/bjc/prosody.git
synced 2025-04-05 14:17:37 +03:00
Merge 0.9->0.10
This commit is contained in:
commit
c80b30a71c
9 changed files with 43 additions and 9 deletions
|
@ -72,6 +72,10 @@ function listener.ondisconnect(conn, err)
|
||||||
requests[conn] = nil;
|
requests[conn] = nil;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function listener.ondetach(conn)
|
||||||
|
requests[conn] = nil;
|
||||||
|
end
|
||||||
|
|
||||||
local function request_reader(request, data, err)
|
local function request_reader(request, data, err)
|
||||||
if not request.parser then
|
if not request.parser then
|
||||||
local function error_cb(reason)
|
local function error_cb(reason)
|
||||||
|
|
|
@ -142,6 +142,10 @@ function listener.ondisconnect(conn)
|
||||||
sessions[conn] = nil;
|
sessions[conn] = nil;
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function listener.ondetach(conn)
|
||||||
|
sessions[conn] = nil;
|
||||||
|
end
|
||||||
|
|
||||||
function listener.onincoming(conn, data)
|
function listener.onincoming(conn, data)
|
||||||
sessions[conn]:feed(data);
|
sessions[conn]:feed(data);
|
||||||
end
|
end
|
||||||
|
|
|
@ -438,9 +438,11 @@ do
|
||||||
end
|
end
|
||||||
|
|
||||||
function interface_mt:setlistener(listener)
|
function interface_mt:setlistener(listener)
|
||||||
self.onconnect, self.ondisconnect, self.onincoming, self.ontimeout, self.onreadtimeout, self.onstatus
|
self:ondetach(); -- Notify listener that it is no longer responsible for this connection
|
||||||
= listener.onconnect, listener.ondisconnect, listener.onincoming,
|
self.onconnect, self.ondisconnect, self.onincoming, self.ontimeout,
|
||||||
listener.ontimeout, listener.onreadtimeout, listener.onstatus;
|
self.onreadtimeout, self.onstatus, self.ondetach
|
||||||
|
= listener.onconnect, listener.ondisconnect, listener.onincoming, listener.ontimeout,
|
||||||
|
listener.onreadtimeout, listener.onstatus, listener.ondetach;
|
||||||
end
|
end
|
||||||
|
|
||||||
-- Stub handlers
|
-- Stub handlers
|
||||||
|
@ -460,6 +462,8 @@ do
|
||||||
end
|
end
|
||||||
function interface_mt:ondrain()
|
function interface_mt:ondrain()
|
||||||
end
|
end
|
||||||
|
function interface_mt:ondetach()
|
||||||
|
end
|
||||||
function interface_mt:onstatus()
|
function interface_mt:onstatus()
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
@ -487,6 +491,7 @@ do
|
||||||
ontimeout = listener.ontimeout; -- called when fatal socket timeout occurs
|
ontimeout = listener.ontimeout; -- called when fatal socket timeout occurs
|
||||||
onreadtimeout = listener.onreadtimeout; -- called when socket inactivity timeout occurs
|
onreadtimeout = listener.onreadtimeout; -- called when socket inactivity timeout occurs
|
||||||
ondrain = listener.ondrain; -- called when writebuffer is empty
|
ondrain = listener.ondrain; -- called when writebuffer is empty
|
||||||
|
ondetach = listener.ondetach; -- called when disassociating this listener from this connection
|
||||||
onstatus = listener.onstatus; -- called for status changes (e.g. of SSL/TLS)
|
onstatus = listener.onstatus; -- called for status changes (e.g. of SSL/TLS)
|
||||||
eventread = false, eventwrite = false, eventclose = false,
|
eventread = false, eventwrite = false, eventclose = false,
|
||||||
eventhandshake = false, eventstarthandshake = false; -- event handler
|
eventhandshake = false, eventstarthandshake = false; -- event handler
|
||||||
|
|
|
@ -285,6 +285,7 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport
|
||||||
local disconnect = listeners.ondisconnect
|
local disconnect = listeners.ondisconnect
|
||||||
local drain = listeners.ondrain
|
local drain = listeners.ondrain
|
||||||
local onreadtimeout = listeners.onreadtimeout;
|
local onreadtimeout = listeners.onreadtimeout;
|
||||||
|
local detach = listeners.ondetach
|
||||||
|
|
||||||
local bufferqueue = { } -- buffer array
|
local bufferqueue = { } -- buffer array
|
||||||
local bufferqueuelen = 0 -- end of buffer array
|
local bufferqueuelen = 0 -- end of buffer array
|
||||||
|
@ -316,11 +317,15 @@ wrapconnection = function( server, listeners, socket, ip, serverport, clientport
|
||||||
handler.onreadtimeout = onreadtimeout;
|
handler.onreadtimeout = onreadtimeout;
|
||||||
|
|
||||||
handler.setlistener = function( self, listeners )
|
handler.setlistener = function( self, listeners )
|
||||||
|
if detach then
|
||||||
|
detach(self) -- Notify listener that it is no longer responsible for this connection
|
||||||
|
end
|
||||||
dispatch = listeners.onincoming
|
dispatch = listeners.onincoming
|
||||||
disconnect = listeners.ondisconnect
|
disconnect = listeners.ondisconnect
|
||||||
status = listeners.onstatus
|
status = listeners.onstatus
|
||||||
drain = listeners.ondrain
|
drain = listeners.ondrain
|
||||||
handler.onreadtimeout = listeners.onreadtimeout
|
handler.onreadtimeout = listeners.onreadtimeout
|
||||||
|
detach = listeners.ondetach
|
||||||
end
|
end
|
||||||
handler.getstats = function( )
|
handler.getstats = function( )
|
||||||
return readtraffic, sendtraffic
|
return readtraffic, sendtraffic
|
||||||
|
|
|
@ -170,6 +170,10 @@ function console_listener.ondisconnect(conn, err)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function console_listener.ondetach(conn)
|
||||||
|
sessions[conn] = nil;
|
||||||
|
end
|
||||||
|
|
||||||
-- Console commands --
|
-- Console commands --
|
||||||
-- These are simple commands, not valid standalone in Lua
|
-- These are simple commands, not valid standalone in Lua
|
||||||
|
|
||||||
|
|
|
@ -317,6 +317,10 @@ function listener.ondisconnect(conn, err)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function listener.ondetach(conn)
|
||||||
|
sessions[conn] = nil;
|
||||||
|
end
|
||||||
|
|
||||||
module:provides("net", {
|
module:provides("net", {
|
||||||
name = "component";
|
name = "component";
|
||||||
private = true;
|
private = true;
|
||||||
|
|
|
@ -34,7 +34,6 @@ end
|
||||||
function listener.onincoming(conn, data)
|
function listener.onincoming(conn, data)
|
||||||
if not data then return; end
|
if not data then return; end
|
||||||
local buf = buffers[conn];
|
local buf = buffers[conn];
|
||||||
buffers[conn] = nil;
|
|
||||||
buf = buf and buf..data or data;
|
buf = buf and buf..data or data;
|
||||||
for service, multiplex_pattern in pairs(available_services) do
|
for service, multiplex_pattern in pairs(available_services) do
|
||||||
if buf:match(multiplex_pattern) then
|
if buf:match(multiplex_pattern) then
|
||||||
|
@ -57,6 +56,8 @@ function listener.ondisconnect(conn, err)
|
||||||
buffers[conn] = nil; -- warn if no buffer?
|
buffers[conn] = nil; -- warn if no buffer?
|
||||||
end
|
end
|
||||||
|
|
||||||
|
listener.ondetach = listener.ondisconnect;
|
||||||
|
|
||||||
module:provides("net", {
|
module:provides("net", {
|
||||||
name = "multiplex";
|
name = "multiplex";
|
||||||
config_prefix = "";
|
config_prefix = "";
|
||||||
|
|
|
@ -350,8 +350,11 @@ function stream_callbacks.streamopened(session, attr)
|
||||||
session.notopen = nil;
|
session.notopen = nil;
|
||||||
elseif session.direction == "outgoing" then
|
elseif session.direction == "outgoing" then
|
||||||
session.notopen = nil;
|
session.notopen = nil;
|
||||||
-- If we are just using the connection for verifying dialback keys, we won't try and auth it
|
if not attr.id then
|
||||||
if not attr.id then error("stream response did not give us a streamid!!!"); end
|
log("error", "Stream response did not give us a stream id!");
|
||||||
|
session:close({ condition = "undefined-condition", text = "Missing stream ID" });
|
||||||
|
return;
|
||||||
|
end
|
||||||
session.streamid = attr.id;
|
session.streamid = attr.id;
|
||||||
|
|
||||||
if session.secure and not session.cert_chain_status then
|
if session.secure and not session.cert_chain_status then
|
||||||
|
@ -617,6 +620,10 @@ function listener.register_outgoing(conn, session)
|
||||||
initialize_session(session);
|
initialize_session(session);
|
||||||
end
|
end
|
||||||
|
|
||||||
|
function listener.ondetach(conn)
|
||||||
|
sessions[conn] = nil;
|
||||||
|
end
|
||||||
|
|
||||||
function check_auth_policy(event)
|
function check_auth_policy(event)
|
||||||
local host, session = event.host, event.session;
|
local host, session = event.host, event.session;
|
||||||
local must_secure = secure_auth;
|
local must_secure = secure_auth;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue