File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
soc/silabs/silabs_siwx91x/siwg917 Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -150,6 +150,13 @@ config WIFI_SILABS_SIWX91X_ENABLE_SINGLE_TLS_SOCKET
150
150
implementation over the network provided by the Network
151
151
Co-Processor present on SiWx91x series.
152
152
153
+ config WIFI_SILABS_SIWX91X_ENABLE_THREE_SSL_SOCKETS
154
+ bool "Offloaded implementation of 3 SSL/TLS sockets"
155
+ help
156
+ Enable this option to support up to three SSL socket implementations
157
+ over the network, utilizing the Network Co-Processor available in
158
+ the SiWx91x series.
159
+
153
160
config WIFI_SILABS_SIWX91X_ENABLE_ROAMING
154
161
bool "WiFi roaming support"
155
162
default y
Original file line number Diff line number Diff line change @@ -151,6 +151,10 @@ static void siwx91x_configure_network_stack(sl_si91x_boot_configuration_t *boot_
151
151
if (IS_ENABLED (CONFIG_WIFI_SILABS_SIWX91X_MQTT_CLIENT )) {
152
152
boot_config -> ext_tcp_ip_feature_bit_map |= SL_SI91X_EXT_EMB_MQTT_ENABLE ;
153
153
}
154
+ if (IS_ENABLED (CONFIG_WIFI_SILABS_SIWX91X_ENABLE_THREE_SSL_SOCKETS )) {
155
+ boot_config -> ext_tcp_ip_feature_bit_map |=
156
+ SL_SI91X_EXT_TCP_IP_FEAT_SSL_THREE_SOCKETS ;
157
+ }
154
158
boot_config -> ext_tcp_ip_feature_bit_map |= SL_SI91X_EXT_TCP_IP_WINDOW_SCALING ;
155
159
boot_config -> ext_tcp_ip_feature_bit_map |= SL_SI91X_EXT_TCP_IP_TOTAL_SELECTS (10 );
156
160
You can’t perform that action at this time.
0 commit comments