Merge pull request #1298 from kstasik/fix/missing-host-name-for-websocket-with-ssl

fix: missing host name for ssl
This commit is contained in:
bel2125 2024-10-13 23:20:48 +02:00 committed by GitHub
commit a8feabd222
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -19538,6 +19538,9 @@ mg_connect_websocket_client(const char *host,
memset(&client_options, 0, sizeof(client_options));
client_options.host = host;
client_options.port = port;
if (use_ssl) {
client_options.host_name = host;
}
return mg_connect_websocket_client_impl(&client_options,
use_ssl,