xiaoxiang781216 commented on a change in pull request #5138: URL: https://github.com/apache/incubator-nuttx/pull/5138#discussion_r777287890
########## File path: net/tcp/tcp_input.c ########## @@ -870,6 +870,11 @@ static void tcp_input(FAR struct net_driver_s *dev, uint8_t domain, if ((tcp->flags & TCP_CTL) == TCP_SYN) { +#if !defined(CONFIG_NET_TCP_WRITE_BUFFERS) + tcp_setsequence(conn->sndseq, conn->rexmit_seq); +#else + /* REVISIT for the buffered mode */ Review comment: @a-lunev could you verify whether the buffer mode also broken now? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@nuttx.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org