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 | 0fdb85997abd2be59252595b1fec9e46389da586 (patch) | |
tree | 69d0f584473e7af9d56eba8aa56dd07be64a0954 /plugins/mod_c2s.lua | |
parent | e354f1abd8ca2fb0fc2c25c1c61c1866cc41d5eb (diff) | |
download | prosody-0fdb85997abd2be59252595b1fec9e46389da586.tar.gz prosody-0fdb85997abd2be59252595b1fec9e46389da586.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.*>"; }; }); |