diff options
author | Marco Cirillo <maranda@lightwitch.org> | 2012-02-24 18:03:27 +0000 |
---|---|---|
committer | Marco Cirillo <maranda@lightwitch.org> | 2012-02-24 18:03:27 +0000 |
commit | bbc4c94fc2ff017da68b672e6c9ff4cc628d64ce (patch) | |
tree | fea6d2b8a429345467165e23cbb1270b3ef27981 /core | |
parent | 9de25d7789ed5974d66a396aa1c5908e7d74bf29 (diff) | |
download | prosody-bbc4c94fc2ff017da68b672e6c9ff4cc628d64ce.tar.gz prosody-bbc4c94fc2ff017da68b672e6c9ff4cc628d64ce.zip |
s2smanager, mod_s2s: clear up ip_hosts after s2s is marked as established, remove useless space from mod_s2s code
Diffstat (limited to 'core')
-rw-r--r-- | core/s2smanager.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index 6877ee18..c05f7229 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -134,6 +134,7 @@ function mark_connected(session) session.sendq = nil; end + session.ip_hosts = nil; session.srv_hosts = nil; end end |