* @brief Sets the maximum retry count for protocol transfers. */
| 501 | * @brief Sets the maximum retry count for protocol transfers. |
| 502 | */ |
| 503 | void IO::FileTransmission::setMaxRetries(int retries) |
| 504 | { |
| 505 | int clamped = qMax(1, retries); |
| 506 | if (m_maxRetries != clamped) { |
| 507 | m_maxRetries = clamped; |
| 508 | Q_EMIT maxRetriesChanged(); |
| 509 | } |
| 510 | } |
| 511 | |
| 512 | /** |
| 513 | * @brief Sets the transfer mode. |