mod_version is here

Thu, 30 Oct 2008 21:26:53 +0000

author
Matthew Wild <mwild1@gmail.com>
date
Thu, 30 Oct 2008 21:26:53 +0000
changeset 188
0d9f03009b8a
parent 187
2e16e5077d8f
child 189
3f0e3a07b491

mod_version is here

core/modulemanager.lua file | annotate | diff | comparison | revisions
plugins/mod_version.lua file | annotate | diff | comparison | revisions
--- 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);

mercurial