diff options
author | Matthew Wild <mwild1@gmail.com> | 2008-12-04 19:21:50 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2008-12-04 19:21:50 +0000 |
commit | 64499bf0d8d6043fd1c2897a759d3e02c22ab9a9 (patch) | |
tree | 2d536be7a266a0dccd47e61d776e721c8d116fea /core/s2smanager.lua | |
parent | ad4d4c6eeeef52ecf93a3cced0c19ef569f2f213 (diff) | |
parent | a1173c8d66cdfd8f22d34c09508a20098819bdbf (diff) | |
download | prosody-64499bf0d8d6043fd1c2897a759d3e02c22ab9a9.tar.gz prosody-64499bf0d8d6043fd1c2897a759d3e02c22ab9a9.zip |
Automated merge with http://waqas.ath.cx/
Diffstat (limited to 'core/s2smanager.lua')
-rw-r--r-- | core/s2smanager.lua | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index 0afb8805..df877767 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -108,7 +108,7 @@ function new_outgoing(from_host, to_host) local log; do - local conn_name = "s2sout"..tostring(conn):match("[a-f0-9]*$"); + local conn_name = "s2sout"..tostring(host_session):match("[a-f0-9]*$"); log = logger_init(conn_name); host_session.log = log; end @@ -180,7 +180,9 @@ end function streamopened(session, attr) local send = session.sends2s; - session.version = tonumber(attr.version) or 0; + -- TODO: #29: SASL/TLS on s2s streams + session.version = 0; --tonumber(attr.version) or 0; + if session.version >= 1.0 and not (attr.to and attr.from) then --print("to: "..tostring(attr.to).." from: "..tostring(attr.from)); log("warn", (session.to_host or "(unknown)").." failed to specify 'to' or 'from' hostname as per RFC"); |