#
# Copyright (c) 2023 Nordic Semiconductor
#
# SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
#

config WIFI_MGMT_EXT
	bool "Extended commands for Wi-Fi management"
	depends on WPA_SUPP
	depends on WIFI_CREDENTIALS
	default y
	help
	  Extends Wi-Fi L2 stack by commands to handle
	  automatic connection management.

config WIFI_CREDENTIALS_SHELL_AUTOCONNECT
	bool "Shell commands to manage Wi-Fi credentials"
	default y
	depends on WIFI_CREDENTIALS_SHELL
	depends on WIFI_MGMT_EXT

if WIFI_MGMT_EXT

config WIFI_MGMT_EXT_CONNECTION_TIMEOUT
	int "Connection timeout"
	default 30
	help
	   Wait period before falling back to the next entry in the list of stored SSIDs.

module = WIFI_MGMT_EXT
module-str = wifi_mgmt_ext
source "subsys/logging/Kconfig.template.log_config"

endif
