:orphan: .. title:: TFTPC_REQUEST_TIMEOUT .. option:: 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 =================== \ :option:`TFTP_LIB ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 5000 Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/lib/tftp/Kconfig:21`` Included via ``Kconfig:8`` → ``Kconfig.zephyr:34`` → ``subsys/Kconfig:37`` → ``subsys/net/Kconfig:89`` → ``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] .. parsed-literal:: config TFTPC_REQUEST_TIMEOUT int "Maximum amount of time the TFTP Client will wait for a response from the server." default 5000 depends on \ :option:`TFTP_LIB ` && \ :option:`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.)*