summaryrefslogtreecommitdiff
path: root/src/xmpp/xmpp_stanza.hpp
diff options
context:
space:
mode:
authorlouiz’ <louiz@louiz.org>2022-03-10 23:23:47 +0100
committerlouiz’ <louiz@louiz.org>2022-03-10 23:23:47 +0100
commit0061298dd0945f7f67e7fa340c6649b179c804d5 (patch)
tree23f178ae4f3d988c0c712c79e3d7156fcc5a33e0 /src/xmpp/xmpp_stanza.hpp
parent18b6006e30c26a2fb6196e3b16420de74a654a73 (diff)
downloadbiboumi-0061298dd0945f7f67e7fa340c6649b179c804d5.tar.gz
biboumi-0061298dd0945f7f67e7fa340c6649b179c804d5.tar.bz2
biboumi-0061298dd0945f7f67e7fa340c6649b179c804d5.tar.xz
biboumi-0061298dd0945f7f67e7fa340c6649b179c804d5.zip
Do not use ':' as a namespace separator with expatHEADmaster
Instead use \1, and build our own nodes by explicitely separating the namespace and the node name.
Diffstat (limited to 'src/xmpp/xmpp_stanza.hpp')
-rw-r--r--src/xmpp/xmpp_stanza.hpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/xmpp/xmpp_stanza.hpp b/src/xmpp/xmpp_stanza.hpp
index f4b3948..a706337 100644
--- a/src/xmpp/xmpp_stanza.hpp
+++ b/src/xmpp/xmpp_stanza.hpp
@@ -25,6 +25,8 @@ class XmlNode
public:
explicit XmlNode(const std::string& name, XmlNode* parent);
explicit XmlNode(const std::string& name);
+ explicit XmlNode(const std::string& xmlns, const std::string& name, XmlNode* parent);
+ explicit XmlNode(const std::string& xmlns, const std::string& name);
/**
* The copy constructor does not copy the parent attribute. The children
* nodes are all copied recursively.
@@ -150,6 +152,10 @@ public:
XmlNode(name),
parent_to_add(parent_ref)
{}
+ XmlSubNode(XmlNode& parent_ref, const std::string& xmlns, const std::string& name):
+ XmlNode(xmlns, name),
+ parent_to_add(parent_ref)
+ {}
~XmlSubNode()
{