You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nuttx.apache.org by xi...@apache.org on 2022/01/17 18:03:48 UTC

[incubator-nuttx] branch master updated (e140ba1 -> f61f276)

This is an automated email from the ASF dual-hosted git repository.

xiaoxiang pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-nuttx.git.


    from e140ba1  arch/stm32: fdcan cosmetics
     add f61f276  net/tcp/sendfile: TCP retransmission could not start because of incorrect snd_ackcb callback handling: Both the snd_ackcb and snd_datacb callbacks were created and destroyed right after sending every packet. Whenever TCP_REXMIT event occurred due to TCP send timeout, TCP_REXMIT was ignored because snd_ackcb callback had been destroyed by the time. The issue is fixed as follows: - both the snd_ackcb and snd_datacb callbacks are combined into one snd_cb callback   (the sam [...]

No new revisions were added by this update.

Summary of changes:
 net/tcp/tcp_sendfile.c | 307 +++++++++++++++++++++----------------------------
 1 file changed, 131 insertions(+), 176 deletions(-)