mirror of
https://github.com/pi-hole/dnsmasq.git
synced 2025-12-19 10:18:25 +00:00
Increase timeout/number of retries in TFTP.
This commit is contained in:
@@ -56,6 +56,10 @@ version 2.67
|
|||||||
we can't use SO_BINDTODEVICE. Thanks to Natrio for the bug
|
we can't use SO_BINDTODEVICE. Thanks to Natrio for the bug
|
||||||
report.
|
report.
|
||||||
|
|
||||||
|
Increase timeout/number of retries in TFTP to accomodate
|
||||||
|
AudioCodes Voice Gateways doing streaming writes to flash.
|
||||||
|
Thanks to Damian Kaczkowski for spotting the problem.
|
||||||
|
|
||||||
|
|
||||||
version 2.66
|
version 2.66
|
||||||
Add the ability to act as an authoritative DNS
|
Add the ability to act as an authoritative DNS
|
||||||
|
|||||||
@@ -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
|
/* don't complain about timeout when we're awaiting the last
|
||||||
ACK, some clients never send it */
|
ACK, some clients never send it */
|
||||||
else if (++transfer->backoff > 5 && len != 0)
|
else if (++transfer->backoff > 7 && len != 0)
|
||||||
{
|
{
|
||||||
endcon = 1;
|
endcon = 1;
|
||||||
len = 0;
|
len = 0;
|
||||||
|
|||||||
Reference in New Issue
Block a user