diff options
author | Mattes D <github@xoft.cz> | 2023-05-09 11:29:35 +0200 |
---|---|---|
committer | Mattes D <github@xoft.cz> | 2023-05-19 16:25:12 +0200 |
commit | c2e0344110c01eef33697c9611c5689e8eee0691 (patch) | |
tree | aa09568a54eda66f062ae0032ce88957730cd3a5 /src/Bindings/LuaTCPLink.cpp | |
parent | Auth SSL Fixes (diff) | |
download | cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar.gz cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar.bz2 cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar.lz cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar.xz cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.tar.zst cuberite-c2e0344110c01eef33697c9611c5689e8eee0691.zip |
Diffstat (limited to '')
-rw-r--r-- | src/Bindings/LuaTCPLink.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/Bindings/LuaTCPLink.cpp b/src/Bindings/LuaTCPLink.cpp index 1e8f99410..14ea5c905 100644 --- a/src/Bindings/LuaTCPLink.cpp +++ b/src/Bindings/LuaTCPLink.cpp @@ -193,8 +193,7 @@ AString cLuaTCPLink::StartTLSClient( } } - // TODO : Provide a way to pass SNI from Lua too. - return link->StartTLSClient(ownCert, ownPrivKey, ""); + return link->StartTLSClient(ownCert, ownPrivKey); } return ""; } |