diff options
author | Kim Alvefur <zash@zash.se> | 2019-11-29 23:27:51 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2019-11-29 23:27:51 +0100 |
commit | 349ac37e3c11f3fa28dde84f9946620c6235930a (patch) | |
tree | 69d0f584473e7af9d56eba8aa56dd07be64a0954 /plugins/mod_c2s.lua | |
parent | e0a077e53b7daa04975397bbd3fdc49b73ef0f50 (diff) | |
download | prosody-349ac37e3c11f3fa28dde84f9946620c6235930a.tar.gz prosody-349ac37e3c11f3fa28dde84f9946620c6235930a.zip |
mod_net_multiplex: Add support for using ALPN
Potentially a bit more efficient since it can jump to the selected
protocol on connect instead of waiting for some data to look at.
Adds a 'protocol' field to net providers for this purpose.
Diffstat (limited to 'plugins/mod_c2s.lua')
-rw-r--r-- | plugins/mod_c2s.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/mod_c2s.lua b/plugins/mod_c2s.lua index aec0370d..aecf2210 100644 --- a/plugins/mod_c2s.lua +++ b/plugins/mod_c2s.lua @@ -374,6 +374,7 @@ module:provides("net", { default_port = 5222; encryption = "starttls"; multiplex = { + protocol = "xmpp-client"; pattern = "^<.*:stream.*%sxmlns%s*=%s*(['\"])jabber:client%1.*>"; }; }); |