mirror of
https://github.com/civetweb/civetweb
synced 2025-03-28 21:13:27 +00:00
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:
commit
a8feabd222
@ -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,
|
||||
|
Loading…
x
Reference in New Issue
Block a user