diff options
author | Matthew Wild <mwild1@gmail.com> | 2020-09-15 09:08:21 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2020-09-15 09:08:21 +0100 |
commit | ea6374c282ec114c5cc1d163d6ef20f35d74397f (patch) | |
tree | 2d70cabf9615e81771386aca111144c32742cba6 | |
parent | cfb1daec94643d85a04d70fe61e104cec09bdb10 (diff) | |
download | prosody-ea6374c282ec114c5cc1d163d6ef20f35d74397f.tar.gz prosody-ea6374c282ec114c5cc1d163d6ef20f35d74397f.zip |
net.http: Add feature discovery (currently just contains SNI)
-rw-r--r-- | net/http.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/net/http.lua b/net/http.lua index 0768cdab..7335d210 100644 --- a/net/http.lua +++ b/net/http.lua @@ -314,4 +314,7 @@ return { formencode = util_http.formencode; formdecode = util_http.formdecode; destroy_request = destroy_request; + features = { + sni = true; + }; }; |