Source code for bitween.components.xmpp.share_plugin.address_stanza

from sleekxmpp.xmlstream import ElementBase

[docs]class AddressStanza(ElementBase): """ substanza for UserSharesStanza, one object represents one share """ name = 'ip_address' namespace = 'https://xmpp.kwoh.de/protocol/shares' plugin_attrib = 'ip_address' interfaces = set(['address', 'port']) plugin_multi_attrib = 'ip_addresses' # does not show up in the real stanza, just for iterating from sleek