Software /
code /
prosody
File
plugins/mod_version.lua @ 191:e64c8a44060f
Fix s2s once and for all
- Moved dialback to the new mod_dialback (mostly).
- Modules can now supply a list of origins to handle to add_handler
- Modules can now handle and process any stanza, overriding the core
- Modules handle non-jabber:client/jabber:server xmlns'd stanzas
author | Matthew Wild <mwild1@gmail.com> |
---|---|
date | Sat, 01 Nov 2008 21:07:14 +0000 |
parent | 189:3f0e3a07b491 |
child | 219:f06e97f525bc |
line wrap: on
line source
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("s2sin", xmlns_version, handle_version_request);