From 95367859295d23cb6a36079bb3b36caf6bdbd4ed Mon Sep 17 00:00:00 2001 From: Waqas Hussain Date: Sun, 5 Oct 2008 04:55:45 +0500 Subject: User registration, etc (jabber:iq:register) --- util/stanza.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'util/stanza.lua') diff --git a/util/stanza.lua b/util/stanza.lua index 553bba4d..cc5b7623 100644 --- a/util/stanza.lua +++ b/util/stanza.lua @@ -132,6 +132,16 @@ function reply(orig) return stanza(orig.name, orig.attr and { to = orig.attr.from, from = orig.attr.to, id = orig.attr.id, type = ((orig.name == "iq" and "result") or nil) }); end +function error_reply(orig, type, condition, message, clone) + local r = reply(orig); + t.attr.type = "error"; + -- TODO use clone + t:tag("error", {type = type}) + :tag(condition, {xmlns = "urn:ietf:params:xml:ns:xmpp-stanzas"}):up(); + if (message) then t:tag("text"):text(message):up(); end + return t; -- stanza ready for adding app-specific errors +end + function presence(attr) return stanza("presence", attr); end -- cgit v1.2.3