diff options
author | Kim Alvefur <zash@zash.se> | 2016-12-02 11:13:05 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2016-12-02 11:13:05 +0100 |
commit | 5edecf159e4a7da6a5b8edccc9766a8119f8b69c (patch) | |
tree | b8d5008111c5708e9ee236f6139e5100ccd683d2 /util/stanza.lua | |
parent | 8cc205862760e879aa21ae934d62143e7f618b8a (diff) | |
parent | b505c4dd28533f117a2085a020426111411e6d88 (diff) | |
download | prosody-5edecf159e4a7da6a5b8edccc9766a8119f8b69c.tar.gz prosody-5edecf159e4a7da6a5b8edccc9766a8119f8b69c.zip |
Merge 0.10->trunk
Diffstat (limited to 'util/stanza.lua')
-rw-r--r-- | util/stanza.lua | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/util/stanza.lua b/util/stanza.lua index a598a81e..651c1973 100644 --- a/util/stanza.lua +++ b/util/stanza.lua @@ -14,6 +14,7 @@ local s_format = string.format; local s_match = string.match; local tostring = tostring; local setmetatable = setmetatable; +local getmetatable = getmetatable; local pairs = pairs; local ipairs = ipairs; local type = type; @@ -45,6 +46,10 @@ local function new_stanza(name, attr, namespaces) return setmetatable(stanza, stanza_mt); end +local function is_stanza(s) + return getmetatable(s) == stanza_mt; +end + function stanza_mt:query(xmlns) return self:tag("query", { xmlns = xmlns }); end @@ -422,6 +427,7 @@ end return { stanza_mt = stanza_mt; stanza = new_stanza; + is_stanza = is_stanza; new_id = new_id; preserialize = preserialize; deserialize = deserialize; |