:orphan: .. title:: TFTPC_REQUEST_RETRANSMITS .. option:: CONFIG_TFTPC_REQUEST_RETRANSMITS *Number of times the TFTP Client will retransmit the request to the server.* Type: ``int`` Help ==== Once the TFTP Client sends out a request, it will wait TFTPC_REQUEST_TIMEOUT msecs for the data to arrive from the TFTP Server. However, if it doesn't arrive within the given time we will re-transmit the request to the server in hopes that the server will respond within time to this request. This number dictates the number of times we will do re-tx of our request before giving up and exiting. Direct dependencies =================== \ :option:`TFTP_LIB ` && \ :option:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 5 Kconfig definition ================== .. highlight:: kconfig At ``subsys/net/lib/tftp/Kconfig:29`` 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_RETRANSMITS int "Number of times the TFTP Client will retransmit the request to the server." default 5 depends on \ :option:`TFTP_LIB ` && \ :option:`NETWORKING ` help Once the TFTP Client sends out a request, it will wait TFTPC_REQUEST_TIMEOUT msecs for the data to arrive from the TFTP Server. However, if it doesn't arrive within the given time we will re-transmit the request to the server in hopes that the server will respond within time to this request. This number dictates the number of times we will do re-tx of our request before giving up and exiting. *(The 'depends on' condition includes propagated dependencies from ifs and menus.)*