We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents e6f9fe2 + 333a689 commit 15ae280Copy full SHA for 15ae280
components/esp_websocket_client/esp_websocket_client.c
@@ -501,6 +501,10 @@ static esp_err_t esp_websocket_client_create_transport(esp_websocket_client_hand
501
if (client->keep_alive_cfg.keep_alive_enable) {
502
esp_transport_ssl_set_keep_alive(ssl, &client->keep_alive_cfg);
503
}
504
+ if (client->if_name) {
505
+ esp_transport_ssl_set_interface_name(ssl, client->if_name);
506
+ }
507
+
508
if (client->config->use_global_ca_store == true) {
509
esp_transport_ssl_enable_global_ca_store(ssl);
510
} else if (client->config->cert) {
0 commit comments