Software /
code /
prosody
File
plugins/mod_version.lua @ 264:a296b61baad8
Only reply with errors if the stanza is not an error or a result (don't know how much bandwidth this just cost me :) )
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Fri, 14 Nov 2008 18:46:00 +0000 |
parent | 219:f06e97f525bc |
child | 298:985710ea308b |
line wrap: on
line source
local st = require "util.stanza"; local send = require "core.sessionmanager".send_to_session; local log = require "util.logger".init("mod_version"); local xmlns_version = "jabber:iq:version" local function handle_version_request(session, stanza) if stanza.attr.type == "get" then session.send(st.reply(stanza):query(xmlns_version) :tag("name"):text("lxmppd"):up() :tag("version"):text("pre-alpha"):up() :tag("os"):text("The best one")); end end add_iq_handler("c2s", xmlns_version, handle_version_request); add_iq_handler("s2sin", xmlns_version, handle_version_request);