diff options
author | louiz’ <louiz@louiz.org> | 2016-10-03 00:58:21 +0200 |
---|---|---|
committer | louiz’ <louiz@louiz.org> | 2016-10-03 01:08:48 +0200 |
commit | 76a8189b46177eb78eee12d1cb3266f282acd380 (patch) | |
tree | 4db56bf37cd37c42c469e78bf6c10040ca8c014c /louloulibs/xmpp/xmpp_component.hpp | |
parent | ffad4306b9e9c6065a01a5fcaca668d70af0db8a (diff) | |
download | biboumi-76a8189b46177eb78eee12d1cb3266f282acd380.tar.gz biboumi-76a8189b46177eb78eee12d1cb3266f282acd380.tar.bz2 biboumi-76a8189b46177eb78eee12d1cb3266f282acd380.tar.xz biboumi-76a8189b46177eb78eee12d1cb3266f282acd380.zip |
Implement result-set-management for LIST queries
ref #2948
Diffstat (limited to 'louloulibs/xmpp/xmpp_component.hpp')
-rw-r--r-- | louloulibs/xmpp/xmpp_component.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/louloulibs/xmpp/xmpp_component.hpp b/louloulibs/xmpp/xmpp_component.hpp index b556ce2..4b6f37d 100644 --- a/louloulibs/xmpp/xmpp_component.hpp +++ b/louloulibs/xmpp/xmpp_component.hpp @@ -31,6 +31,7 @@ #define FORWARD_NS "urn:xmpp:forward:0" #define CLIENT_NS "jabber:client" #define DATAFORM_NS "jabber:x:data" +#define RSM_NS "http://jabber.org/protocol/rsm" /** * An XMPP component, communicating with an XMPP server using the protocole @@ -219,6 +220,9 @@ public: virtual void after_handshake() {} + const std::string& get_served_hostname() const + { return this->served_hostname; } + /** * Whether or not we ever succeeded our authentication to the XMPP server */ |