Re: [PATCH] net: tftp: Fix for DATA ACK for block count out of order

2023-02-03 Thread Tom Rini
On Wed, Jan 04, 2023 at 06:16:26PM -0800, seanedm...@linux.microsoft.com wrote: > From: Sean Edmond > > In rfc7440, if an ACK is not received by the server or if the > last data block in a window is dropped, the server will timeout and > retransmit the window. In this case, the block count

Re: [PATCH] net: tftp: Fix for DATA ACK for block count out of order

2023-01-10 Thread Ramon Fried
On Thu, Jan 5, 2023 at 4:16 AM wrote: > > From: Sean Edmond > > In rfc7440, if an ACK is not received by the server or if the > last data block in a window is dropped, the server will timeout and > retransmit the window. In this case, the block count received will be > less than the internal

[PATCH] net: tftp: Fix for DATA ACK for block count out of order

2023-01-05 Thread seanedmond
From: Sean Edmond In rfc7440, if an ACK is not received by the server or if the last data block in a window is dropped, the server will timeout and retransmit the window. In this case, the block count received will be less than the internal block count. In this case, the client should not ACK.

[PATCH] net: tftp: Fix for DATA ACK for block count out of order

2023-01-05 Thread seanedmond
From: Sean Edmond In rfc7440, if an ACK is not received by the server or if the last data block in a window is dropped, the server will timeout and retransmit the window. In this case, the block count received will be less than the internal block count. In this case, the client should not ACK.