You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In tftp_send() in pico_tftp.c, the calculated length of the packet to retransmit always comes out 0, since the incoming session->len is 0 (and incoming len is 0 also).
If I workaround issue 1, and force session->len to be the correct length, re-transmits "work", but I quickly exceed PICO_MAX_TIMERS and eventually run out of memory
The text was updated successfully, but these errors were encountered:
In tftp_send() in pico_tftp.c, the calculated length of the packet to retransmit always comes out 0, since the incoming session->len is 0 (and incoming len is 0 also).
If I workaround issue 1, and force session->len to be the correct length, re-transmits "work", but I quickly exceed PICO_MAX_TIMERS and eventually run out of memory
The text was updated successfully, but these errors were encountered: