1# Private config options for echo-client sample app 2 3# Copyright (c) 2018 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6mainmenu "Networking echo-client sample application" 7 8config NET_SAMPLE_IFACE2_MY_IPV6_ADDR 9 string "My IPv6 address for second interface" 10 help 11 The value depends on your network setup. 12 13config NET_SAMPLE_IFACE2_MY_IPV4_ADDR 14 string "My IPv4 address for second interface" 15 help 16 The value depends on your network setup. 17 18config NET_SAMPLE_IFACE2_VLAN_TAG 19 int "VLAN tag for second interface" 20 default 100 21 range 0 4094 22 depends on NET_VLAN 23 help 24 Set VLAN (virtual LAN) tag (id) that is used in the sample 25 application. 26 27config NET_SAMPLE_IFACE3_MY_IPV6_ADDR 28 string "My IPv6 address for third interface" 29 help 30 The value depends on your network setup. 31 32config NET_SAMPLE_IFACE3_MY_IPV4_ADDR 33 string "My IPv4 address for third interface" 34 help 35 The value depends on your network setup. 36 37config NET_SAMPLE_IFACE3_VLAN_TAG 38 int "VLAN tag for third interface" 39 default 200 40 range 0 4094 41 depends on NET_VLAN 42 help 43 Set VLAN (virtual LAN) tag (id) that is used in the sample 44 application. 45 46config NET_SAMPLE_PSK_HEADER_FILE 47 string "Header file containing PSK" 48 default "dummy_psk.h" 49 depends on MBEDTLS_KEY_EXCHANGE_PSK_ENABLED 50 help 51 Name of a header file containing a 52 pre-shared key. 53 54config NET_SAMPLE_SEND_ITERATIONS 55 int "Send sample data this many times" 56 default 0 57 help 58 Send sample data this many times before exiting. A value of 59 zero means that the sample application is run forever. 60 61source "Kconfig.zephyr" 62