2020-12-09 17:09:19 +00:00
|
|
|
|
2021-01-30 18:01:38 +00:00
|
|
|
XEP-0047: In-band Bytestreams
|
|
|
|
=============================
|
2020-12-09 17:09:19 +00:00
|
|
|
|
|
|
|
.. module:: slixmpp.plugins.xep_0047
|
|
|
|
|
|
|
|
.. autoclass:: XEP_0047
|
|
|
|
:members:
|
|
|
|
:exclude-members: session_bind, plugin_init, plugin_end
|
|
|
|
|
2021-02-13 15:13:30 +00:00
|
|
|
.. autoclass:: IBBytestream
|
|
|
|
:members:
|
2020-12-09 17:09:19 +00:00
|
|
|
|
2021-02-25 23:07:47 +00:00
|
|
|
.. _api-0047:
|
|
|
|
|
2021-02-14 11:11:58 +00:00
|
|
|
Internal API methods
|
|
|
|
--------------------
|
|
|
|
|
|
|
|
The API here is used to manage streams and authorize. The default handlers
|
|
|
|
work with the config parameters.
|
|
|
|
|
|
|
|
.. glossary::
|
|
|
|
|
|
|
|
authorized_sid (0047 version)
|
|
|
|
- **jid**: :class:`~.JID` receiving the stream initiation.
|
|
|
|
- **node**: stream id
|
|
|
|
- **ifrom**: who the stream is from.
|
|
|
|
- **args**: :class:`~.Iq` of the stream request.
|
|
|
|
- **returns**: ``True`` if the stream should be accepted,
|
|
|
|
``False`` otherwise.
|
|
|
|
|
|
|
|
Check if the stream should be accepted. Uses
|
|
|
|
the information setup by :term:`preauthorize_sid (0047 version)`
|
|
|
|
by default.
|
|
|
|
|
|
|
|
authorized (0047 version)
|
|
|
|
- **jid**: :class:`~.JID` receiving the stream initiation.
|
|
|
|
- **node**: stream id
|
|
|
|
- **ifrom**: who the stream is from.
|
|
|
|
- **args**: :class:`~.Iq` of the stream request.
|
|
|
|
- **returns**: ``True`` if the stream should be accepted,
|
|
|
|
``False`` otherwise.
|
|
|
|
|
|
|
|
A fallback handler (run after :term:`authorized_sid (0047 version)`)
|
|
|
|
to check if a stream should be accepted. Uses the ``auto_accept``
|
|
|
|
parameter by default.
|
|
|
|
|
|
|
|
preauthorize_sid (0047 version)
|
|
|
|
- **jid**: :class:`~.JID` receiving the stream initiation.
|
|
|
|
- **node**: stream id
|
|
|
|
- **ifrom**: who the stream will be from.
|
|
|
|
- **args**: Unused.
|
|
|
|
|
|
|
|
Register a stream id to be accepted automatically (called from
|
|
|
|
other plugins such as XEP-0095).
|
|
|
|
|
|
|
|
get_stream
|
|
|
|
- **jid**: :class:`~.JID` of local receiver.
|
|
|
|
- **node**: stream id
|
|
|
|
- **ifrom**: who the stream is from.
|
|
|
|
- **args**: unused
|
|
|
|
- **returns**: :class:`~.IBBytestream`
|
|
|
|
|
|
|
|
Return a currently opened stream between two JIDs.
|
|
|
|
|
|
|
|
set_stream
|
|
|
|
- **jid**: :class:`~.JID` of local receiver.
|
|
|
|
- **node**: stream id
|
|
|
|
- **ifrom**: who the stream is from.
|
|
|
|
- **args**: unused
|
|
|
|
|
|
|
|
Register an opened stream between two JIDs.
|
|
|
|
|
|
|
|
del_stream
|
|
|
|
- **jid**: :class:`~.JID` of local receiver.
|
|
|
|
- **node**: stream id
|
|
|
|
- **ifrom**: who the stream is from.
|
|
|
|
- **args**: unused
|
|
|
|
|
|
|
|
Delete a stream between two JIDs.
|
|
|
|
|
|
|
|
|
2020-12-09 17:09:19 +00:00
|
|
|
Stanza elements
|
|
|
|
---------------
|
|
|
|
|
|
|
|
.. automodule:: slixmpp.plugins.xep_0047.stanza
|
|
|
|
:members:
|
|
|
|
:undoc-members:
|
|
|
|
|