File

plugins/mod_version.lua @ 331:830fd67f9378

Quite some changes, to: - Small logging fix for s2smanager - Send a stream error if an incoming s2s connection is to an unrecognised hostname (fixes #11) - init_xmlhandlers now takes a table of callbacks (includes changes to net/xmpp*_listener for this) - Move sending of unavailable presence to where it should be, sessionmanager.destroy_session - Fix sending of stream errors to wrong connection
author Matthew Wild <mwild1@gmail.com>
date Tue, 18 Nov 2008 17:52:33 +0000
parent 314:851f271d25b0
child 421:63be85693710
line wrap: on
line source


local st = require "util.stanza";

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 operating system ever!"));
	end
end

add_iq_handler("c2s", xmlns_version, handle_version_request);
add_iq_handler("s2sin", xmlns_version, handle_version_request);