Skip to content
Merged
Show file tree
Hide file tree
Changes from 4 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 @@ -1175,12 +1175,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 = "76531737853e2eb36ac2cc024f211431e7d28004",
sha256 = "4fff746f039eed8b7642133ef9008cc60406c0b739beac511db1f01377e06933",
version = "1028ef49cef37707adb29b62ba94e197e420b34c",
sha256 = "b6599083ac1aa25e13b97c92b12886d184c20d1874117094329f4696010949f0",
urls = ["https://github.com/google/quiche/archive/{version}.tar.gz"],
strip_prefix = "quiche-{version}",
use_category = ["controlplane", "dataplane_core"],
release_date = "2024-01-17",
release_date = "2024-01-22",
cpe = "N/A",
license = "BSD-3-Clause",
license_url = "https://github.com/google/quiche/blob/{version}/LICENSE",
Expand Down
12 changes: 12 additions & 0 deletions test/common/quic/platform/quiche_test_impl.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,5 +40,17 @@ inline std::string QuicheGetCommonSourcePathImpl() {
return absl::StrCat(test_srcdir, "/external/com_github_google_quiche/quiche/common");
}

class QuicheScopedDisableExitOnDFatalImpl {
public:
explicit QuicheScopedDisableExitOnDFatalImpl() {}

// This type is neither copyable nor movable.
QuicheScopedDisableExitOnDFatalImpl(const QuicheScopedDisableExitOnDFatalImpl&) = delete;
QuicheScopedDisableExitOnDFatalImpl&
operator=(const QuicheScopedDisableExitOnDFatalImpl&) = delete;

~QuicheScopedDisableExitOnDFatalImpl() {}
};

} // namespace test
} // namespace quiche