view plugins/mod_version.lua @ 210:e679487e2fa4

Part 2 of internal components. Should have mentioned that the previous commit was from waqas, this one from me.
author Matthew Wild <mwild1@gmail.com>
date Tue, 04 Nov 2008 18:17:48 +0000
parents 3f0e3a07b491
children f06e97f525bc
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);