Software /
code /
prosody
Annotate
plugins/mod_version.lua @ 309:d9c8825b7332
Fixed sessionmanager to use appropriate method for sending stream features
author | Waqas Hussain <waqas20@gmail.com> |
---|---|
date | Sun, 16 Nov 2008 04:37:54 +0500 |
parent | 298:985710ea308b |
child | 314:851f271d25b0 |
rev | line source |
---|---|
188 | 1 |
2 local st = require "util.stanza"; | |
3 local send = require "core.sessionmanager".send_to_session; | |
4 | |
5 local log = require "util.logger".init("mod_version"); | |
6 | |
7 local xmlns_version = "jabber:iq:version" | |
8 | |
9 local function handle_version_request(session, stanza) | |
219 | 10 if stanza.attr.type == "get" then |
11 session.send(st.reply(stanza):query(xmlns_version) | |
12 :tag("name"):text("lxmppd"):up() | |
13 :tag("version"):text("pre-alpha"):up() | |
298 | 14 :tag("os"):text("the best operating system ever!")); |
219 | 15 end |
188 | 16 end |
17 | |
18 add_iq_handler("c2s", xmlns_version, handle_version_request); | |
189
3f0e3a07b491
Fix for mod_version over s2s
Matthew Wild <mwild1@gmail.com>
parents:
188
diff
changeset
|
19 add_iq_handler("s2sin", xmlns_version, handle_version_request); |