comparison src/plugins/plugin_xep_0047.py @ 2504:67cc54b01a12

plugin file sharing component: first draft: this component act as an endpoint where a user can store and retrieve its files using Jingle.
author Goffi <goffi@goffi.org>
date Wed, 28 Feb 2018 18:28:39 +0100
parents e2a7bb875957
children
comparison
equal deleted inserted replaced
2503:c0bec8bac2b5 2504:67cc54b01a12
52 52
53 PLUGIN_INFO = { 53 PLUGIN_INFO = {
54 C.PI_NAME: "In-Band Bytestream Plugin", 54 C.PI_NAME: "In-Band Bytestream Plugin",
55 C.PI_IMPORT_NAME: "XEP-0047", 55 C.PI_IMPORT_NAME: "XEP-0047",
56 C.PI_TYPE: "XEP", 56 C.PI_TYPE: "XEP",
57 C.PI_MODES: C.PLUG_MODE_BOTH,
57 C.PI_PROTOCOLS: ["XEP-0047"], 58 C.PI_PROTOCOLS: ["XEP-0047"],
58 C.PI_MAIN: "XEP_0047", 59 C.PI_MAIN: "XEP_0047",
59 C.PI_HANDLER: "yes", 60 C.PI_HANDLER: "yes",
60 C.PI_DESCRIPTION: _("""Implementation of In-Band Bytestreams""") 61 C.PI_DESCRIPTION: _("""Implementation of In-Band Bytestreams""")
61 } 62 }