Software / code / prosody
Comparison
plugins/mod_dialback.lua @ 4264:fa36e749749c
mod_dialback: Remove <optional/> from stream feature, as per latest specs.
| author | Waqas Hussain <waqas20@gmail.com> |
|---|---|
| date | Sat, 07 May 2011 21:16:06 +0500 |
| parent | 4238:05f991b4a90e |
| child | 4316:2478698bdc52 |
comparison
equal
deleted
inserted
replaced
| 4263:618e2a2b2d2c | 4264:fa36e749749c |
|---|---|
| 146 end | 146 end |
| 147 end, 100); | 147 end, 100); |
| 148 | 148 |
| 149 -- Offer dialback to incoming hosts | 149 -- Offer dialback to incoming hosts |
| 150 module:hook("s2s-stream-features", function (data) | 150 module:hook("s2s-stream-features", function (data) |
| 151 data.features:tag("dialback", { xmlns='urn:xmpp:features:dialback' }):tag("optional"):up():up(); | 151 data.features:tag("dialback", { xmlns='urn:xmpp:features:dialback' }):up(); |
| 152 end); | 152 end); |