summaryrefslogtreecommitdiff
path: root/slixmpp/plugins/xep_0047
AgeCommit message (Collapse)Author
2021-02-26XEP-0047: API changesmathieui
and fix unit tests broken for years.
2021-02-13XEP-0047: Better typing, docs, coroutine.mathieui
- Add a gather() shortcut to buffer all data received in a stream - Fix a bug in sendall that happens if the data is above the block size.
2021-02-05global: rewrite copyright notice to use commentsmathieui
2020-12-01XEP-0047: Fix the max sequence numbermathieui
The max seq allowed according to the XEP is 65535, therefore we must modulo using 65536 to allow that value.
2018-07-01Switch from @asyncio.coroutine to async def everywhere.Emmanuel Gil Peyrot
2016-10-22sed -i 's/set(\[\(.*\)\])$/{\1}/g' **/*.pyEmmanuel Gil Peyrot
2016-10-22sed -i 's/set((\(.*\)))$/{\1}/g' **/*.pyEmmanuel Gil Peyrot
2016-09-20Various XEPs: Remove deprecated aliases.Emmanuel Gil Peyrot
2015-04-19XEP-0047: use coroutines for send(), sendall() and the new sendfile().Emmanuel Gil Peyrot
2015-04-19XEP-0047: prevent any unneededly large or useless bytes slice.Emmanuel Gil Peyrot
2015-04-19XEP-0047: use asyncio’s Queue implementation, to prevent any possibility ↵Emmanuel Gil Peyrot
of deadlock.
2015-04-14XEP-0047: make open_stream() return a future that will be set to the stream ↵Emmanuel Gil Peyrot
object.
2015-04-14XEP-0047: replace threading events with simple booleans.Emmanuel Gil Peyrot
2015-04-14XEP-0047: allow only one window over the stream.Emmanuel Gil Peyrot
2015-04-14XEP-0047: announce the correct stanza type if message is selected.Emmanuel Gil Peyrot
2015-04-14XEP-0047: return the correct error type on not-acceptable (example 5).Emmanuel Gil Peyrot
2015-04-14XEP-0047: don’t answer with an unauthorized error when block-size is too big.Emmanuel Gil Peyrot
2015-04-14XEP-0047: remove now-useless threading locks.Emmanuel Gil Peyrot
2015-04-14XEP-0047: prevent tracebacks in stanza reading.Emmanuel Gil Peyrot
2015-02-12Remove more threaded= and block= options from the pluginsmathieui
(also, correct a typo)
2015-02-12Fix the uses of stanza.reply()mathieui
This is relying on the stanzas being copied for each handler. We no longer do that for performance reasons, so instead of editing the copy in-place, stanza.reply() now returns a new stanza.
2014-09-28Remove the now useless Queue wrapper in slixmpp.util.Emmanuel Gil Peyrot
2014-07-17Rename to slixmppFlorent Le Coz