[Scummvm-git-logs] scummvm master -> 8df9779e228a4597935b51d44f09bc90bfcb4e6e
LittleToonCat
noreply at scummvm.org
Fri Mar 31 09:09:17 UTC 2023
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
8df9779e22 SCUMM HE: Add command and re-add endline
Commit: 8df9779e228a4597935b51d44f09bc90bfcb4e6e
https://github.com/scummvm/scummvm/commit/8df9779e228a4597935b51d44f09bc90bfcb4e6e
Author: Little Cat (toontownlittlecat at gmail.com)
Date: 2023-03-31T06:08:58-03:00
Commit Message:
SCUMM HE: Add command and re-add endline
Changed paths:
backends/networking/curl/socket.cpp
diff --git a/backends/networking/curl/socket.cpp b/backends/networking/curl/socket.cpp
index 8e861ddfa79..ff6061a2360 100644
--- a/backends/networking/curl/socket.cpp
+++ b/backends/networking/curl/socket.cpp
@@ -75,6 +75,9 @@ bool CurlSocket::connect(Common::String url) {
// Just connect to the host, do not do any transfers.
curl_easy_setopt(_easy, CURLOPT_CONNECT_ONLY, 1L);
+ // On Android, libcurl won't connect to SSL connections
+ // with VERIFYPEER enabled because we do not ship
+ // with a CA bundle. So let's disable it.
#ifdef ANDROID_PLAIN_PORT
curl_easy_setopt(_easy, CURLOPT_SSL_VERIFYPEER, 0L);
#endif
@@ -163,3 +166,4 @@ size_t CurlSocket::recv(void *data, int maxLen) {
}
} // End of namespace Networking
+
More information about the Scummvm-git-logs
mailing list