From e301f8343bdb2f274f0eec9ca8b2af57c14ac5a7 Mon Sep 17 00:00:00 2001 From: Boris Kolpackov Date: Mon, 21 Sep 2020 13:47:47 +0200 Subject: Revert TFTP block size increase --- bbot/worker/worker.cxx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/bbot/worker/worker.cxx b/bbot/worker/worker.cxx index bca9646..d5b9e20 100644 --- a/bbot/worker/worker.cxx +++ b/bbot/worker/worker.cxx @@ -52,10 +52,10 @@ namespace bbot // Note that upload can be quite large and take a while to upload under high // load. // - const size_t tftp_blksize (65464); // Between 512 (default) and 65464. - const size_t tftp_put_timeout (3600); // 1 hour (also the default). - const size_t tftp_get_timeout (10); // 10 seconds. - const size_t tftp_get_retries (3); // Task request retries (see startup()). + const size_t tftp_blksize (1024); // Between 512 (default) and 65464. + const size_t tftp_put_timeout (3600); // 1 hour (also the default). + const size_t tftp_get_timeout (10); // 10 seconds. + const size_t tftp_get_retries (3); // Task request retries (see startup()). } static dir_path -- cgit v1.1