zephyr/samples/net/tftp_client/Kconfig
romain pelletant 4a49b1d867 sample: net: add tftp client sample
Add simple TFTP client code using TFTP client library
Initiate connection (IPv4) with optional DNS resolution
Operate get operation then put operation in octet mode
Tested on native_posix
Issue/Discussion #60985

Signed-off-by: romain pelletant <romain.pelletant@fullfreqs.com>
2023-08-23 10:05:19 +02:00

21 lines
490 B
Text

# Private config options for TFTP client sample
# Copyright (c) 2023 Kickmaker
# SPDX-License-Identifier: Apache-2.0
mainmenu "TFTP Client sample"
config TFTP_APP_PORT
string "TFTP port used"
default "69"
help
TFTP port used.
config TFTP_APP_SERVER
string "TFTP server address"
default "192.0.2.2"
help
TFTP server address. Write as a full URI including optional port number.
When DNS resolver is enabled, DNS domain names could be used as well.
source "Kconfig.zephyr"