diff options
author | Matthew Wild <mwild1@gmail.com> | 2012-03-15 03:05:24 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2012-03-15 03:05:24 +0000 |
commit | 99096dfa23df0d6a7f01d2dcba500cd8330ac086 (patch) | |
tree | 9f2d8793a23f9b0bad826cb92f8e7954a0eadbc3 /plugins/mod_c2s.lua | |
parent | 46ae4849710de0b5b31d1983c72d6f3d40253ec0 (diff) | |
download | prosody-99096dfa23df0d6a7f01d2dcba500cd8330ac086.tar.gz prosody-99096dfa23df0d6a7f01d2dcba500cd8330ac086.zip |
mod_c2s, mod_s2s: Add multiplex support
Diffstat (limited to 'plugins/mod_c2s.lua')
-rw-r--r-- | plugins/mod_c2s.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/mod_c2s.lua b/plugins/mod_c2s.lua index e3557492..67156f55 100644 --- a/plugins/mod_c2s.lua +++ b/plugins/mod_c2s.lua @@ -231,6 +231,9 @@ module:add_item("net-provider", { name = "legacy_ssl"; listener = listener; encryption = "ssl"; + multiplex = { + pattern = "^<.*:stream.*%sxmlns%s*=%s*(['\"])jabber:client%1.*>"; + }; }); |