slixmpp/sleekxmpp/test
Lance Stout e37adace62 Allow SASL mechanism to be set when creating a ClientXMPP instance.
Instead of using:

    ClientXMPP(jid, password, plugin_config={
        'feature_mechanisms': {'use_mech': 'SOME-MECH'}})

You can use:

    ClientXMPP(jid, password, sasl_mech='SOME-MECH')

If you need to change the mechanism after instantiation, use:

    xmpp['feature_mechanisms'].sasl.mech = 'SCRAM-MD5'
2011-09-28 22:48:30 -04:00
..
__init__.py SleekTest may now run against a live stream. 2010-10-07 19:43:51 -04:00
livesocket.py Handle sending stanzas in chunks if the socket has poor performance. 2011-08-25 15:08:45 -07:00
mocksocket.py Handle sending stanzas in chunks if the socket has poor performance. 2011-08-25 15:08:45 -07:00
sleektest.py Allow SASL mechanism to be set when creating a ClientXMPP instance. 2011-09-28 22:48:30 -04:00