Small fix for mod_version
[prosody.git] / plugins / mod_version.lua
1
2 local st = require "util.stanza";
3 local send = require "core.sessionmanager".send_to_session;
4
5 local log = require "util.logger".init("mod_version");
6
7 local xmlns_version = "jabber:iq:version"
8
9 local function handle_version_request(session, stanza)
10         if stanza.attr.type == "get" then
11                 session.send(st.reply(stanza):query(xmlns_version)
12                         :tag("name"):text("lxmppd"):up()
13                         :tag("version"):text("pre-alpha"):up()
14                         :tag("os"):text("the best operating system ever!"));
15         end
16 end
17
18 add_iq_handler("c2s", xmlns_version, handle_version_request);
19 add_iq_handler("s2sin", xmlns_version, handle_version_request);