
31 Mar
2022
31 Mar
'22
10:03 a.m.
Some globals where not properly initialized causing timeouts as data packets where not immediately acknowledged.
Signed-off-by: Arjan Minzinga Zijlstra arjan.minzingazijlstra@fox-it.com --- net/tftp.c | 2 ++ 1 file changed, 2 insertions(+)
diff --git a/net/tftp.c b/net/tftp.c index 62a9648474..9d5fe2f2d9 100644 --- a/net/tftp.c +++ b/net/tftp.c @@ -912,6 +912,8 @@ void tftp_start_server(void) tftp_block_size = TFTP_BLOCK_SIZE; tftp_cur_block = 0; tftp_our_port = WELL_KNOWN_PORT; + tftp_windowsize = 1; + tftp_next_ack = tftp_windowsize;
#ifdef CONFIG_TFTP_TSIZE tftp_tsize = 0;
--
2.25.1