aboutsummaryrefslogtreecommitdiffstats
path: root/net/xmppclient_listener.lua
Commit message (Collapse)AuthorAgeFilesLines
* xmppclient_listener: Use error text as disconnect reason if there is anyMatthew Wild2009-07-181-1/+1
|
* Remove version number from copyright headersMatthew Wild2009-07-101-1/+1
|
* net.xmppclient_listener: Fix potential traceback when no reason is specified ↵Matthew Wild2009-07-081-1/+1
| | | | for closing a session
* xmppclient_listener: Pass session close reason to destroy_session (to be ↵Matthew Wild2009-06-261-2/+2
| | | | used in unavailable presence)
* net.xmppclient_listener: Add small commentMatthew Wild2009-05-311-0/+1
|
* xmppclient_listener: A connection is also secure when it uses legacy SSLMatthew Wild2009-05-291-0/+4
|
* xmpp{server,client}_listener: Fix global accessesMatthew Wild2009-04-221-2/+4
|
* net.xmppclient_listener: Set default namespace to jabber:clientMatthew Wild2009-03-211-1/+3
|
* 0.3->0.4Matthew Wild2009-03-201-1/+1
|
* net/xmppclient_listener: Add some logging and handle unestablished sessions ↵Matthew Wild2009-02-261-2/+3
| | | | error'ing
* Update copyright notices for 2009Matthew Wild2009-01-301-2/+2
|
* 0.2->0.3Matthew Wild2009-01-301-1/+1
|
* GPL->MIT!Matthew Wild2009-01-301-13/+2
|
* Change xmlhandlers to match stream opening tag with ns+tagMatthew Wild2008-12-161-1/+1
|
* 0.1 -> 0.2Matthew Wild2008-12-101-1/+1
|
* Fix blank tracebacks for c2s/s2s connectionsMatthew Wild2008-12-101-1/+1
|
* stanza_dispatch != dispatch_stanzaMatthew Wild2008-12-071-1/+1
|
* Typo in variable name in last commitMatthew Wild2008-12-071-1/+1
|
* stanza_dispatch = core_process_stanza, fixed for xmpp{client,server} ↵Matthew Wild2008-12-071-4/+1
| | | | listeners, and sessionmanager for the new syntax
* Code tidying for xmpp{client,server}_listenersMatthew Wild2008-12-061-14/+5
|
* Backed out changeset 099d8a102deb (committed too much)Matthew Wild2008-12-051-1/+1
|
* Add TLS socket to readlist before handshake starts, fixes major slow-down on ↵Matthew Wild2008-12-051-1/+1
| | | | TLS connections
* Remove an incorrect line which I didn't add, and fix the proper way. ↵Matthew Wild2008-12-051-0/+5
| | | | Corrects the sending of stanzas over unauthed s2sout's. Also fixes mod_dialback to send stanzas and not strings.
* Disconnect with stream errors on bad XML, or invalid stream namespaceMatthew Wild2008-12-051-2/+14
|
* Abstract xmlhandlers a bit more, also add error callbacksMatthew Wild2008-12-041-3/+4
|
* Fix logger ids for c2s and s2soutMatthew Wild2008-12-041-1/+1
|
* Insert copyright/license headersMatthew Wild2008-12-031-0/+20
|
* No more reading 1 byte at a time from socketsMatthew Wild2008-11-281-1/+1
|
* session:disconnect() -> session:close() for consistency with other Lua APIsMatthew Wild2008-11-181-2/+2
|
* Quite some changes, to:Matthew Wild2008-11-181-7/+4
| | | | | | | | - Small logging fix for s2smanager - Send a stream error if an incoming s2s connection is to an unrecognised hostname (fixes #11) - init_xmlhandlers now takes a table of callbacks (includes changes to net/xmpp*_listener for this) - Move sending of unavailable presence to where it should be, sessionmanager.destroy_session - Fix sending of stream errors to wrong connection
* s2s sessions can now be disconnected, with or without a stream error. Fixes #8Matthew Wild2008-11-181-3/+0
|
* Allow us to close client connections, with or without a stream error. ↵Matthew Wild2008-11-181-0/+34
| | | | Partially fixes #8, we still need the same for s2s (though it should be almost a straight copy of the code, I'm too tired atm)
* Fix logging in some cases for client disconnectsMatthew Wild2008-11-161-1/+1
|
* Fix logging of disconnect reason, and also sending of unavailable presence ↵Matthew Wild2008-11-151-3/+4
| | | | on disconnect
* Some bugs fixedWaqas Hussain2008-11-151-1/+1
|
* Actually show error and position when we show a traceback :)Matthew Wild2008-11-091-1/+1
|
* Committing code to get nicer tracebacks for errors, also we no longer ↵Matthew Wild2008-11-081-1/+6
| | | | consider such errors fatal (probably a bad thing, I know...)
* Backed out changeset 4adc53e03b4d (garbage collection)Matthew Wild2008-10-241-1/+1
|
* Extra garbage collection, for debuggingMatthew Wild2008-10-241-1/+1
|
* Partial s2s commitMatthew Wild2008-10-241-1/+1
|
* Fix for not destroying sessions when connection closed.Matthew Wild2008-10-231-0/+13
|
* Abstract connections with "connection listeners"Matthew Wild2008-10-221-0/+74
- Added connlistener for xmppclient - SASL/TLS now use a new session:reset_stream() method - main.lua on its way to being a bit neater