Skip to content

Commit

Permalink
Merge pull request #608 from johanstokking/feature/websocket/tls_keep…
Browse files Browse the repository at this point in the history
…alive_ifname

feat(websocket): adding support for `if_name` when using WSS transport
  • Loading branch information
gabsuren authored Jul 10, 2024
2 parents e6f9fe2 + 333a689 commit 15ae280
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions components/esp_websocket_client/esp_websocket_client.c
Original file line number Diff line number Diff line change
Expand Up @@ -501,6 +501,10 @@ static esp_err_t esp_websocket_client_create_transport(esp_websocket_client_hand
if (client->keep_alive_cfg.keep_alive_enable) {
esp_transport_ssl_set_keep_alive(ssl, &client->keep_alive_cfg);
}
if (client->if_name) {
esp_transport_ssl_set_interface_name(ssl, client->if_name);
}

if (client->config->use_global_ca_store == true) {
esp_transport_ssl_enable_global_ca_store(ssl);
} else if (client->config->cert) {
Expand Down

0 comments on commit 15ae280

Please sign in to comment.