net: context: Shorten too long line
The commit "net: tcp: Handle retransmitted packets from peer" introduced over 80 character line that was missed in review. Fixing it now. Signed-off-by: Jukka Rissanen <jukka.rissanen@linux.intel.com>
This commit is contained in:
parent
876334c699
commit
6c60603a9f
1 changed files with 2 additions and 1 deletions
|
@ -842,7 +842,8 @@ NET_CONN_CB(tcp_established)
|
|||
return NET_DROP;
|
||||
}
|
||||
|
||||
if (net_tcp_seq_cmp(sys_get_be32(NET_TCP_HDR(pkt)->seq), context->tcp->send_ack) < 0) {
|
||||
if (net_tcp_seq_cmp(sys_get_be32(NET_TCP_HDR(pkt)->seq),
|
||||
context->tcp->send_ack) < 0) {
|
||||
/* Peer sent us packet we've already seen. Apparently,
|
||||
* our ack was lost.
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue