CONFIG_TFTPC_REQUEST_TIMEOUT

Maximum amount of time the TFTP Client will wait for a response from the server.

Type: int

Help

Maximum amount of time (in msec) that the TFTP Client will wait for data from the TFTP Server. Once this time has elasped, the TFTP Client will assume that the Server failed and close the connection.

Direct dependencies

TFTP_LIB && NETWORKING

(Includes any dependencies from ifs and menus.)

Default

  • 5000

Kconfig definition

At <Zephyr>/subsys/net/lib/tftp/Kconfig:21

Included via <Zephyr>/Kconfig:8<Zephyr>/Kconfig.zephyr:34<Zephyr>/subsys/Kconfig:34<Zephyr>/subsys/net/Kconfig:89<Zephyr>/subsys/net/lib/Kconfig:12

Menu path: (Top) → Sub Systems and OS Services → Networking → Link layer and IP networking support → Network Protocols → Socket TFTP Library Support [EXPERIMENTAL]

config TFTPC_REQUEST_TIMEOUT
    int "Maximum amount of time the TFTP Client will wait for a response from the server."
    default 5000
    depends on TFTP_LIB && NETWORKING
    help
      Maximum amount of time (in msec) that the TFTP Client will wait for
      data from the TFTP Server. Once this time has elasped, the TFTP Client
      will assume that the Server failed and close the connection.

(The ‘depends on’ condition includes propagated dependencies from ifs and menus.)