Software /
code /
prosody
Changeset
188:0d9f03009b8a
mod_version is here
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Thu, 30 Oct 2008 21:26:53 +0000 |
parents | 187:2e16e5077d8f |
children | 189:3f0e3a07b491 |
files | core/modulemanager.lua plugins/mod_version.lua |
diffstat | 2 files changed, 21 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/core/modulemanager.lua Thu Oct 30 21:19:26 2008 +0000 +++ b/core/modulemanager.lua Thu Oct 30 21:26:53 2008 +0000 @@ -52,6 +52,7 @@ load("tls"); load("vcard"); load("private"); + load("version"); end function load(name)
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/plugins/mod_version.lua Thu Oct 30 21:26:53 2008 +0000 @@ -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);