Bugfix: make sure the TCP connection is polled immediately after tcp_socket_send() is called so that the TCP segment goes out directly
This commit is contained in:
parent
f11d344d4d
commit
ae4801bba6
|
@ -357,6 +357,8 @@ tcp_socket_send(struct tcp_socket *s,
|
|||
s->output_senddata_len = s->output_data_len;
|
||||
}
|
||||
|
||||
tcpip_poll_tcp(s->c);
|
||||
|
||||
return len;
|
||||
}
|
||||
/*---------------------------------------------------------------------------*/
|
||||
|
|
Loading…
Reference in a new issue