:orphan: .. title:: CONFIG_TFTPC_REQUEST_RETRANSMITS .. kconfig:: CONFIG_TFTPC_REQUEST_RETRANSMITS CONFIG_TFTPC_REQUEST_RETRANSMITS ################################ *Number of times the TFTP Client will retransmit the request to the server.* Type: ``int`` Help ==== .. code-block:: none 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 =================== \ :kconfig:`TFTP_LIB ` && \ :kconfig:`NETWORKING ` *(Includes any dependencies from ifs and menus.)* Default ======= - 5 Kconfig definition ================== At ``/net/lib/tftp/Kconfig:29`` 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_RETRANSMITS int "Number of times the TFTP Client will retransmit the request to the server." default 5 depends on TFTP_LIB && 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.)*