mirror of https://github.com/bjc/prosody
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
622 B
20 lines
622 B
|
|
local st = require "util.stanza";
|
|
|
|
local log = require "util.logger".init("mod_version");
|
|
|
|
local xmlns_version = "jabber:iq:version"
|
|
|
|
require "core.discomanager".set("version", xmlns_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
|
|
|
|
module:add_iq_handler("c2s", xmlns_version, handle_version_request);
|
|
module:add_iq_handler("s2sin", xmlns_version, handle_version_request);
|
|
|