File tree Expand file tree Collapse file tree 2 files changed +12
-0
lines changed
soc/silabs/silabs_siwx91x/siwg917 Expand file tree Collapse file tree 2 files changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -164,6 +164,14 @@ config WIFI_SILABS_SIWX91X_SSL_HIGH_STREAMING
164
164
This implementation is provided by the Network Co-Processor present
165
165
on SiWx91x series.
166
166
167
+ config WIFI_SILABS_SIWX91X_SSL_VERSIONS_SUPPORT
168
+ bool "Offloaded implementation of SSL/TLS multiple versions support"
169
+ help
170
+ Enable this option to allow the device to support multiple versions
171
+ of SSL/TLS over TCP, providing flexibility in handling different
172
+ SSL/TLS versions.This implementation is provided by the Network
173
+ Co-Processor present on SiWx91x series.
174
+
167
175
config WIFI_SILABS_SIWX91X_ENABLE_ROAMING
168
176
bool "WiFi roaming support"
169
177
default y
Original file line number Diff line number Diff line change @@ -158,6 +158,10 @@ static void siwx91x_configure_network_stack(sl_si91x_boot_configuration_t *boot_
158
158
boot_config -> ext_tcp_ip_feature_bit_map |=
159
159
SL_SI91X_EXT_TCP_IP_FEAT_SSL_THREE_SOCKETS ;
160
160
}
161
+ if (IS_ENABLED (CONFIG_WIFI_SILABS_SIWX91X_SSL_VERSIONS_SUPPORT )) {
162
+ boot_config -> ext_custom_feature_bit_map |=
163
+ SL_SI91X_EXT_FEAT_SSL_VERSIONS_SUPPORT ;
164
+ }
161
165
boot_config -> ext_tcp_ip_feature_bit_map |= SL_SI91X_EXT_TCP_IP_WINDOW_SCALING ;
162
166
boot_config -> ext_tcp_ip_feature_bit_map |= SL_SI91X_EXT_TCP_IP_TOTAL_SELECTS (10 );
163
167
You can’t perform that action at this time.
0 commit comments