Increase timeout/number of retries in TFTP.

This commit is contained in:
Simon Kelley
2013-06-19 10:31:23 +01:00
parent e2ba0df2d4
commit b4b9308079
2 changed files with 6 additions and 2 deletions

View File

@@ -555,7 +555,7 @@ void check_tftp_listeners(fd_set *rset, time_t now)
}
/* don't complain about timeout when we're awaiting the last
ACK, some clients never send it */
else if (++transfer->backoff > 5 && len != 0)
else if (++transfer->backoff > 7 && len != 0)
{
endcon = 1;
len = 0;