zephyr/samples/net/syslog_net/Kconfig
Pisit Sawangvonganan a163f9db61 kconfig: fix typo in (arch, boards, kernel, modules, samples, share)
Utilize a code spell-checking tool to scan for and correct spelling errors
in `Kconfig` files within the `arch`, `boards`, `kernel`, `modules`,
`samples`, and `share` directory.
Additionally, incorporates a fix recommended by the reviewer.

Signed-off-by: Pisit Sawangvonganan <pisit@ndrsolution.com>
2025-07-01 10:58:54 -10:00

32 lines
873 B
Plaintext

# Private config options for syslog-net sample app
# Copyright (c) 2020 Intel Corporation
# SPDX-License-Identifier: Apache-2.0
mainmenu "Networking syslog sample application"
config NET_SAMPLE_SEND_ITERATIONS
int "Send sample data this many times"
default 0
help
Send sample data this many times before exiting. A value of
zero means that the defaults in the application are used.
config NET_SAMPLE_SERVER_RUNTIME
string "Syslog server IP address set at runtime"
help
Server address for the syslog server.
This server address gets set at runtime by the sample
app before the backend is initialized. This can be
either IPv4 or IPv6 address. Server listen UDP port
number can be configured here too.
Following syntax is supported:
192.0.2.1:514
192.0.2.42
[2001:db8::1]:514
[2001:db8::2]
2001:db::42
source "Kconfig.zephyr"