We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d6e48c commit a62c56cCopy full SHA for a62c56c
quinn-proto/src/connection/spaces.rs
@@ -147,7 +147,9 @@ impl PacketSpace {
147
// Nothing new to send and nothing to retransmit, so fall back on a ping. This should only
148
// happen in rare cases during the handshake when the server becomes blocked by
149
// anti-amplification.
150
- self.ping_pending = true;
+ if !self.immediate_ack_pending {
151
+ self.ping_pending = true;
152
+ }
153
}
154
155
/// Get the next outgoing packet number in this space
0 commit comments