1menu "OpenThread CLI Example"
2
3    config OPENTHREAD_CLI_ESP_EXTENSION
4        bool "Enable Espressif's extended features"
5        default y
6        help
7            Enable Espressif's extended features include TCP socket, UDP socket.
8
9    config OPENTHREAD_CLI_TCP_SERVER_PORT
10        int "the port of TCP server"
11        default 12345
12        depends on OPENTHREAD_CLI_ESP_EXTENSION
13        help
14            Set the connect port of socket
15
16    config OPENTHREAD_CLI_UDP_SERVER_PORT
17        int "the port of UDP server"
18        default 54321
19        depends on OPENTHREAD_CLI_ESP_EXTENSION
20        help
21            Set the connect port of socket
22
23endmenu
24