mod_version is here

This commit is contained in:
Matthew Wild 2008-10-30 21:26:53 +00:00
parent a961f27b69
commit 005b4b9d75
2 changed files with 21 additions and 0 deletions

View file

@ -52,6 +52,7 @@ function loadall()
load("tls");
load("vcard");
load("private");
load("version");
end
function load(name)

20
plugins/mod_version.lua Normal file
View file

@ -0,0 +1,20 @@
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("s2s", xmlns_version, handle_version_request);