aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/mod_version.lua
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2008-10-30 21:26:53 +0000
committerMatthew Wild <mwild1@gmail.com>2008-10-30 21:26:53 +0000
commit005b4b9d758e0c5d0c3f7aa59760eeec06c09ce0 (patch)
tree164974474a2aaa79b05ae942d370904750793cea /plugins/mod_version.lua
parenta961f27b69b5beb1552c2e200935a4ee1e0fc468 (diff)
downloadprosody-005b4b9d758e0c5d0c3f7aa59760eeec06c09ce0.tar.gz
prosody-005b4b9d758e0c5d0c3f7aa59760eeec06c09ce0.zip
mod_version is here
Diffstat (limited to 'plugins/mod_version.lua')
-rw-r--r--plugins/mod_version.lua20
1 files changed, 20 insertions, 0 deletions
diff --git a/plugins/mod_version.lua b/plugins/mod_version.lua
new file mode 100644
index 00000000..a00cb7f9
--- /dev/null
+++ b/plugins/mod_version.lua
@@ -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);