summaryrefslogtreecommitdiff
path: root/sleekxmpp/features/feature_bind
AgeCommit message (Collapse)Author
2013-07-26optimize importsJean-Philippe Caruana
2013-03-28Event index documentation updatedAnton Ryzhov
2013-02-18Use requested_jid instead of boundjid during binding.Lance Stout
2012-10-24Lock the bound JID in the JID cache.Lance Stout
2012-07-19Fix issue of roster data being split across multiple rosters.Lance Stout
Resolved by always normalizing JIDs to bare form, regardless of if they are JID objects or strings. Also simplified related code to prefer use of JID objects instead of strings so they don't need to be parsed multiple times.
2012-07-10Add session_bind_event threading event.Lance Stout
2012-03-12Move feature_bind to new system.Lance Stout
2012-02-17More extraneous import cleanup.Lance Stout
2012-01-06Fix client_roster when the bare JID changes after binding.Lance Stout
Adds session_bind event.
2011-11-19Tidy up logging calls.Lance Stout
2011-11-20This change stops sleekxmpp from spending huge amounts of time unnecessarily ↵Vijay Pandurangan
computing logging data that may never be used. This is a HUGE performance improvement; in some of my test runs, unnecessary string creation was accounting for > 60% of all CPU time. Note that using % in a string will _always_ perform the sting substitutions, because the strings are constructed before the function is called. So log.debug('%s' % expensiveoperation()) will take about the same CPU time whether or not the logging level is DEBUG or INFO. if you use , no substitutions are performed unless the string is actually logged
2011-07-02SASL failure event now includes the failure stanza.Lance Stout
Broke SASL stanzas into separate files. Fixed typo in feature_bind.
2011-07-02It isn't 2010 anymore.Lance Stout
I keep forgetting to update the copyright on new code.
2011-07-02Use a set to track negotiated features.Lance Stout
Added guards to prevent renegotiating STARTTLS or SASL in cases where servers don't behave properly.
2011-07-01Continued reorganization and streamlining.Lance Stout