Lance Stout

Results 19 comments of Lance Stout

First off, you've done a good job getting TCP and TLS connections to work here. Merging and supporting this as a feature in stanza, though, is going to take some...

Worth double checking that this still works, and updating docs if so: https://github.com/henrikjoreteg/bind-transforms

The same or similar should be done for security.md too (which should be referenced by contribute.md).

@wraithgar They're intentionally supported. See the form views for good examples of extra view state. Basically any type of widget view will want these. I vaguely recall convincing Henrik that...

This is because Sleek does not allow PLAIN authentication over an unencrypted connection, by default. To allow it, set this before connecting and processing: ``` xmpp['feature_mechanisms'].unencrypted_plain = True ```

As for the strangeness with is_set, that has already been fixed in the develop branch.

Would you mind sharing what your main app loop looks like with how you're handling connections/reconnects, etc. It seems from your recent issues that it is just different enough from...

That is certainly legal code that ought to work. As a temporary measure, adding in a two second delay between connection attempts should be plenty to ensure the threads detect...

Develop branch now tracks the main threads and waits for them to exit before returning from `disconnect()`.

This needs testing to be sure edge cases are covered.