:orphan: .. title:: CONFIG_TFTPC_REQUEST_TIMEOUT .. kconfig:: CONFIG_TFTPC_REQUEST_TIMEOUT CONFIG_TFTPC_REQUEST_TIMEOUT ############################ *Maximum amount of time the TFTP Client will wait for a response from the server.* Type: ``int`` Help ==== .. code-block:: none 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 =================== \ :kconfig:`TFTP_LIB ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 5000 Kconfig definition ================== At ``/net/lib/tftp/Kconfig:21`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:44`` → ``/Kconfig:39`` → ``/net/Kconfig:89`` → ``/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] .. code-block:: kconfig 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.)*