1# Private config options for syslog-net sample app 2 3# Copyright (c) 2020 Intel Corporation 4# SPDX-License-Identifier: Apache-2.0 5 6mainmenu "Networking syslog sample application" 7 8config NET_SAMPLE_SEND_ITERATIONS 9 int "Send sample data this many times" 10 default 0 11 help 12 Send sample data this many times before exiting. A value of 13 zero means that the defaults in the application are used. 14 15 16config NET_SAMPLE_SERVER_RUNTIME 17 string "Syslog server IP address set at runtime" 18 help 19 Server address for the syslog server. 20 This server address gets set at rumtime by the sample 21 app defore the backend is initialized. This can be 22 either IPv4 or IPv6 address. Server listen UDP port 23 number can be configured here too. 24 Following syntax is supported: 25 192.0.2.1:514 26 192.0.2.42 27 [2001:db8::1]:514 28 [2001:db8::2] 29 2001:db::42 30 31source "Kconfig.zephyr" 32