mirror of
https://github.com/xcat2/xNBA.git
synced 2024-11-22 09:31:51 +00:00
[tcp] Use a zero window size for RST packets
Signed-off-by: Michael Brown <mcb30@ipxe.org>
This commit is contained in:
parent
a5c016d93e
commit
49ac629821
@ -714,7 +714,7 @@ static int tcp_xmit_reset ( struct tcp_connection *tcp,
|
||||
tcphdr->ack = in_tcphdr->seq;
|
||||
tcphdr->hlen = ( ( sizeof ( *tcphdr ) / 4 ) << 4 );
|
||||
tcphdr->flags = ( TCP_RST | TCP_ACK );
|
||||
tcphdr->win = htons ( TCP_MAX_WINDOW_SIZE );
|
||||
tcphdr->win = htons ( 0 );
|
||||
tcphdr->csum = tcpip_chksum ( iobuf->data, iob_len ( iobuf ) );
|
||||
|
||||
/* Dump header */
|
||||
|
Loading…
Reference in New Issue
Block a user