mirror of
https://github.com/bjc/prosody.git
synced 2025-04-03 21:27:38 +03:00
mod_version is here
This commit is contained in:
parent
a961f27b69
commit
005b4b9d75
2 changed files with 21 additions and 0 deletions
|
@ -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
20
plugins/mod_version.lua
Normal 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);
|
Loading…
Add table
Add a link
Reference in a new issue