diff options
| author | Ilpo Järvinen <ij@kernel.org> | 2025-03-05 23:38:52 +0100 |
|---|---|---|
| committer | David S. Miller <davem@davemloft.net> | 2025-03-17 13:56:38 +0000 |
| commit | 9866884ce8ef25338c5b33cbb97c2b5d92088528 (patch) | |
| tree | 417a50826b2c13603456571c9c407a387b785dab /include/net/tcp.h | |
| parent | 4618e195f9251947a5f15f7e5533bcc3a19b93ef (diff) | |
tcp: Pass flags to __tcp_send_ack
Accurate ECN needs to send custom flags to handle IP-ECN
field reflection during handshake.
Signed-off-by: Ilpo Järvinen <ij@kernel.org>
Signed-off-by: Chia-Yu Chang <chia-yu.chang@nokia-bell-labs.com>
Reviewed-by: Eric Dumazet <edumazet@google.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include/net/tcp.h')
| -rw-r--r-- | include/net/tcp.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/net/tcp.h b/include/net/tcp.h index c6bdd3d63159..d08fbf90495d 100644 --- a/include/net/tcp.h +++ b/include/net/tcp.h @@ -707,7 +707,7 @@ void tcp_send_active_reset(struct sock *sk, gfp_t priority, enum sk_rst_reason reason); int tcp_send_synack(struct sock *); void tcp_push_one(struct sock *, unsigned int mss_now); -void __tcp_send_ack(struct sock *sk, u32 rcv_nxt); +void __tcp_send_ack(struct sock *sk, u32 rcv_nxt, u16 flags); void tcp_send_ack(struct sock *sk); void tcp_send_delayed_ack(struct sock *sk); void tcp_send_loss_probe(struct sock *sk); |