1# Copyright (c) 2024 Espressif Systems (Shanghai) Co., Ltd.
2# SPDX-License-Identifier: Apache-2.0
3
4mainmenu "Ethernet Test"
5
6source "Kconfig.zephyr"
7
8config DHCP_ASSIGN_TIMEOUT
9	int "DHCP Assign Timeout (in seconds)"
10	default 30
11	help
12	  Timeout duration for receiving IPv4 address from DHCP.
13	  If no address is assigned within this time, test will fail.
14
15config GATEWAY_PING_TIMEOUT
16	int "Gateway Ping Timeout (in seconds)"
17	default 10
18	help
19	  Timeout duration for pinging the network gateway.
20	  If no reply is received within this time, test will fail.
21