Skip to content
Merged
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 @@ -822,12 +822,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 = "3ba85b1c85fbd9439cfe3a8adf4d9a9238503d14",
sha256 = "7d7d6ce97864e76211dd45372f9285d98141dde83fb81c2ac544a4bdf3a42b9c",
version = "4c1d482ab708b6e945afc53816e1bf5dc342f11e",
sha256 = "454002442133ed5dfff59686a8569effc48aabb21a756b92e1ab2173f632cc14",
urls = ["https://github.com/google/quiche/archive/{version}.tar.gz"],
strip_prefix = "quiche-{version}",
use_category = ["dataplane_core"],
release_date = "2021-09-22",
release_date = "2021-09-27",
cpe = "N/A",
),
com_googlesource_googleurl = dict(
Expand Down
3 changes: 3 additions & 0 deletions test/integration/quic_http_integration_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -324,6 +324,9 @@ TEST_P(QuicHttpIntegrationTest, PortMigration) {
auto response = std::move(encoder_decoder.second);

codec_client_->sendData(*request_encoder_, 1024u, false);
while (!quic_connection_->IsHandshakeConfirmed()) {
dispatcher_->run(Event::Dispatcher::RunType::NonBlock);
}

// Change to a new port by switching socket, and connection should still continue.
Network::Address::InstanceConstSharedPtr local_addr =
Expand Down