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.
if_name
1 parent 25d8423 commit 333a689Copy full SHA for 333a689
components/esp_websocket_client/esp_websocket_client.c
@@ -500,6 +500,10 @@ static esp_err_t esp_websocket_client_create_transport(esp_websocket_client_hand
500
if (client->keep_alive_cfg.keep_alive_enable) {
501
esp_transport_ssl_set_keep_alive(ssl, &client->keep_alive_cfg);
502
}
503
+ if (client->if_name) {
504
+ esp_transport_ssl_set_interface_name(ssl, client->if_name);
505
+ }
506
+
507
if (client->config->use_global_ca_store == true) {
508
esp_transport_ssl_enable_global_ca_store(ssl);
509
} else if (client->config->cert) {
0 commit comments