gloox
1.0.28
|
#include <capabilities.h>
Public Member Functions | |
Capabilities (Disco *disco) | |
Capabilities (const Tag *tag=0) | |
virtual | ~Capabilities () |
const std::string & | node () const |
void | setNode (const std::string &node) |
const std::string | ver () const |
virtual const std::string & | filterString () const |
virtual StanzaExtension * | newInstance (const Tag *tag) const |
virtual Tag * | tag () const |
virtual StanzaExtension * | clone () const |
virtual StringList | handleDiscoNodeFeatures (const JID &from, const std::string &node) |
virtual Disco::IdentityList | handleDiscoNodeIdentities (const JID &from, const std::string &node) |
virtual Disco::ItemList | handleDiscoNodeItems (const JID &from, const JID &to, const std::string &node=EmptyString) |
Public Member Functions inherited from StanzaExtension | |
StanzaExtension (int type) | |
virtual | ~StanzaExtension () |
virtual Stanza * | embeddedStanza () const |
virtual Tag * | embeddedTag () const |
int | extensionType () const |
Public Member Functions inherited from DiscoNodeHandler | |
virtual | ~DiscoNodeHandler () |
This is an implementation of XEP-0115 (Entity Capabilities).
XEP Version: 1.5-15
Definition at line 36 of file capabilities.h.
Capabilities | ( | Disco * | disco | ) |
Constructs a new object and fills it according to the parameters.
Definition at line 25 of file capabilities.cpp.
Capabilities | ( | const Tag * | tag = 0 | ) |
Constructs a new object from the given Tag.
tag | The Tag to parse. |
Definition at line 33 of file capabilities.cpp.
|
virtual |
Virtual Destructor.
Definition at line 46 of file capabilities.cpp.
|
inlinevirtual |
Returns an identical copy of the current StanzaExtension.
Implements StanzaExtension.
Definition at line 88 of file capabilities.h.
|
virtual |
Returns an XPath expression that describes a path to child elements of a stanza that an extension handles.
Implements StanzaExtension.
Definition at line 142 of file capabilities.cpp.
|
virtual |
In addition to handleDiscoNodeIdentities
, this function is used to gather more information on a specific node. It is called when a disco::info query arrives with a node attribute that matches the one registered for this handler.
from | The sender of the request. |
node | The node this handler is supposed to handle. |
Implements DiscoNodeHandler.
Definition at line 161 of file capabilities.cpp.
|
virtual |
In addition to handleDiscoNodeFeatures
, this function is used to gather more information on a specific node. It is called when a disco::info query arrives with a node attribute that matches the one registered for this handler.
from | The sender of the request. |
node | The node this handler is supposed to handle. |
Implements DiscoNodeHandler.
Definition at line 166 of file capabilities.cpp.
|
virtual |
This function is used to gather more information on a specific node. It is called when a disco::items query arrives with a node attribute that matches the one registered for this handler. If node is empty, items for the root node (no node) shall be returned.
from | The sender of the request. |
to | The receiving JID (useful for transports). |
node | The node this handler is supposed to handle. |
Implements DiscoNodeHandler.
Definition at line 178 of file capabilities.cpp.
|
inlinevirtual |
Returns a new Instance of the derived type. Usually, for a derived class FooExtension, the implementation of this function looks like:
Implements StanzaExtension.
Definition at line 79 of file capabilities.h.
|
inline |
Returns the client's identifying node.
Definition at line 61 of file capabilities.h.
|
inline |
Sets the client's identifying node.
node | The node. |
Definition at line 67 of file capabilities.h.
|
virtual |
Returns a Tag representation of the extension.
Implements StanzaExtension.
Definition at line 148 of file capabilities.cpp.
const std::string ver | ( | ) | const |
Returns the client's identifying ver string.
Definition at line 52 of file capabilities.cpp.