Remove all trailing whitespace
|
Florian Zeitz |
2013-08-09 |
sessionmanager, s2smanager: Remove unused imports
|
Matthew Wild |
2013-04-11 |
sessionmanager, s2smanager: Remove open_session tracing
|
Matthew Wild |
2013-04-08 |
s2smanager: Remove unused function parameter
|
Matthew Wild |
2013-03-22 |
s2smanager: Access prosody.hosts instead of hosts global directly
|
Matthew Wild |
2013-03-22 |
s2smanager, mod_s2s, mod_dialback, mod_saslauth: Move s2smanager.make_authenticated() to mod_s2s, and plugins now signal authentication via the s2s-authenticated event
|
Matthew Wild |
2013-03-22 |
s2smanager: Use unused local, reduce table indexing
|
Kim Alvefur |
2013-03-13 |
s2smanager: Generate session names used for logging the same way everywhere
|
Kim Alvefur |
2013-01-23 |
s2smanager: missing return on session.send function.
|
Marco Cirillo |
2012-08-26 |
s2smanager: Remove logging of (unknown) in a case where from_host and to_host should always be set
|
Matthew Wild |
2012-07-23 |
Hopefully inert commit to clean up logging across a number of modules, removing all cases of concatenation when building log messages
|
Matthew Wild |
2012-07-23 |
s2smanager: Fix a traceback when we close a s2s connection ourselves (thanks for the testing Zash).
|
Waqas Hussain |
2012-06-13 |
Merge with Zash
|
Matthew Wild |
2012-05-10 |
s2smanager, mod_s2s: Move checking DNS timeout option to mod_s2s
|
Kim Alvefur |
2012-05-10 |
s2smanager: Clean up unused imports.
|
Kim Alvefur |
2012-05-10 |
mod_s2s, s2smanager, mod_dialback: Move addition of session.send() on s2sin to after they are authenticated (thus from mod_s2s to s2smanager). Update mod_dialback to fire route/remote directly, as session.send() is no longer available for s2sin_unauthed. Fixes #291.
|
Matthew Wild |
2012-05-10 |
Merge timber->trunk - thanks everyone!
|
Matthew Wild |
2012-04-24 |
s2smanager, mod_s2s: Move import of dns_max_depth to mod_s2s
|
Kim Alvefur |
2012-03-11 |
s2smanager, mod_s2s: clear up ip_hosts after s2s is marked as established, remove useless space from mod_s2s code
|
Marco Cirillo |
2012-02-24 |
s2smanager: remove send_to_host.
|
Florian Zeitz |
2012-02-24 |
s2smanager, mod_s2s, mod_s2s/s2sout: Split connection handling out of s2smanager into mod_s2s, and further split connection logic for s2sout to a module lib, s2sout.lib.lua
|
Matthew Wild |
2012-01-23 |
Merge 0.9->trunk
|
Matthew Wild |
2012-03-09 |
core.s2smanager: Log the entire stream header.
|
Kim Alvefur |
2012-03-04 |
Merge with 0.9
|
Matthew Wild |
2012-02-25 |
core.s2smanager: Fix check_cert_status() for when the stream has no from attr
|
Kim Alvefur |
2012-02-21 |
s2smanager: Fix traceback when socket.tcp6 isn't available
|
Matthew Wild |
2012-02-25 |
Merge with 0.9
|
Matthew Wild |
2012-01-26 |
s2smanager: Log the host when marking it authenticated
|
Paul Aurich |
2012-01-24 |
s2smanager: Fix missing import of 'type' (thanks darkrain)
|
Matthew Wild |
2011-12-20 |
s2smanager: Don't throw an error when the "interface" config option is a string (which it is by default).
|
Waqas Hussain |
2011-12-14 |
s2smanager: Remove unused reference to modulemanager
|
Matthew Wild |
2011-12-13 |
s2smanager: Store port specified by SRV records
|
Florian Zeitz |
2011-12-07 |
s2smanager: Use config over xmppserver's default interface
|
Matthew Wild |
2011-11-28 |
s2smanager, net.dns: Fix handling for NXNAME and SRV target of "."
|
Florian Zeitz |
2011-10-26 |
s2smanager, xmppserver_listener: Support for connecting to other servers via IPv6
|
Florian Zeitz |
2011-10-22 |
s2smanager: Update to newer luasec
|
Paul Aurich |
2010-12-07 |
s2smanager: Fix letter case in log message (thanks darkrain)
|
Matthew Wild |
2011-06-05 |
s2smanager: Log reason when destroying a session.
|
Waqas Hussain |
2011-05-07 |
Merge 0.8->trunk
|
Matthew Wild |
2011-02-24 |
s2smanager: Drop some log messages to debug level from info/warn
|
Matthew Wild |
2011-02-22 |
s2smanager: Drop some log messages to debug level from info/warn
|
Matthew Wild |
2011-02-22 |
Merge 0.8->trunk
|
Waqas Hussain |
2011-01-28 |
s2smanager: Change 'Connection failed' error message text to 'Server-to-server connection failed' (thanks Paul)
|
Matthew Wild |
2011-01-26 |
Merge 0.8->trunk
|
Matthew Wild |
2011-01-10 |
s2smanager: Don't bounce error replies for error and result stanzas.
|
Waqas Hussain |
2011-01-10 |
Merge 0.8->trunk
|
Matthew Wild |
2011-01-06 |
s2smanager: Destroy session on immediate failure of a connection attempt (e.g. inability to create sockets)
|
Matthew Wild |
2010-12-24 |
s2smanager: Handle DNS lookup error in response handler
|
Matthew Wild |
2010-12-24 |
s2smanager: send_to_host(): Handle already-destroyed session and bounce stanza accordingly
|
Matthew Wild |
2010-12-24 |
s2smanager: new_outgoing(): Destroy session if first connection attempt fails immediately (e.g. can't create sockets)
|
Matthew Wild |
2010-12-24 |
s2smanager: Give all new outgoing s2s sessions a close method by default (destroy_session)
|
Matthew Wild |
2010-12-24 |
s2smanager: Add a missing semi-colon
|
Matthew Wild |
2010-12-24 |
s2smanager: destroy_session(): Pass reason to retire_session() and return true on successful destruction
|
Matthew Wild |
2010-12-24 |
s2smanager: retire_session(): Add a 'reason' parameter
|
Matthew Wild |
2010-12-24 |
s2smanager: session.send(): Return the result of send_to_host() (and incidentally make this a tail call \o/)
|
Matthew Wild |
2010-12-22 |
s2smanager: send_to_host(): Return false on failure, and true otherwise
|
Matthew Wild |
2010-12-22 |
s2smanager: Destroy session on immediate failure of a connection attempt (e.g. inability to create sockets)
|
Matthew Wild |
2010-12-24 |
s2smanager: Handle DNS lookup error in response handler
|
Matthew Wild |
2010-12-24 |
s2smanager: send_to_host(): Handle already-destroyed session and bounce stanza accordingly
|
Matthew Wild |
2010-12-24 |
s2smanager: new_outgoing(): Destroy session if first connection attempt fails immediately (e.g. can't create sockets)
|
Matthew Wild |
2010-12-24 |