Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions bazel/repository_locations.bzl
Original file line number Diff line number Diff line change
Expand Up @@ -1292,12 +1292,12 @@ REPOSITORY_LOCATIONS_SPEC = dict(
project_name = "QUICHE",
project_desc = "QUICHE (QUIC, HTTP/2, Etc) is Google‘s implementation of QUIC and related protocols",
project_url = "https://github.com/google/quiche",
version = "89c28d4ce7df60329173a576ed52aafda88f743b",
sha256 = "050e50e1802e61769c70afd63ada31dd85de4fb68925b16398497860bfbf0272",
version = "eec4080d1549e9e0423fcddf10172b7707d52ab9",
sha256 = "e07372553c4772e40e227a5875349878b527e4bdf00a5eee5eb0200ae9ff3744",
urls = ["https://github.com/google/quiche/archive/{version}.tar.gz"],
strip_prefix = "quiche-{version}",
use_category = ["controlplane", "dataplane_core"],
release_date = "2025-11-24",
release_date = "2025-11-26",
cpe = "N/A",
license = "BSD-3-Clause",
license_url = "https://github.com/google/quiche/blob/{version}/LICENSE",
Expand Down
6 changes: 2 additions & 4 deletions source/common/quic/envoy_quic_dispatcher.cc
Original file line number Diff line number Diff line change
Expand Up @@ -32,14 +32,12 @@ EnvoyQuicTimeWaitListManager::EnvoyQuicTimeWaitListManager(quic::QuicPacketWrite

void EnvoyQuicTimeWaitListManager::SendPublicReset(
const quic::QuicSocketAddress& self_address, const quic::QuicSocketAddress& peer_address,
quic::QuicConnectionId connection_id, bool ietf_quic, size_t received_packet_length,
std::unique_ptr<quic::QuicPerPacketContext> packet_context) {
quic::QuicConnectionId connection_id, bool ietf_quic, size_t received_packet_length) {
ENVOY_LOG_EVERY_POW_2_MISC(info, "Sending Stateless Reset on connection {}",
connection_id.ToString());
stats_.stateless_reset_packets_sent_.inc();
quic::QuicTimeWaitListManager::SendPublicReset(self_address, peer_address, connection_id,
ietf_quic, received_packet_length,
std::move(packet_context));
ietf_quic, received_packet_length);
}

EnvoyQuicDispatcher::EnvoyQuicDispatcher(
Expand Down
3 changes: 1 addition & 2 deletions source/common/quic/envoy_quic_dispatcher.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,7 @@ class EnvoyQuicTimeWaitListManager : public quic::QuicTimeWaitListManager {
void SendPublicReset(const quic::QuicSocketAddress& self_address,
const quic::QuicSocketAddress& peer_address,
quic::QuicConnectionId connection_id, bool ietf_quic,
size_t received_packet_length,
std::unique_ptr<quic::QuicPerPacketContext> packet_context) override;
size_t received_packet_length) override;

private:
QuicDispatcherStats& stats_;
Expand Down