// Copyright 2022 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "quiche/common/quiche_crypto_logging.h" #include <cstdint> #include <string> #include "absl/base/macros.h" #include "absl/status/status.h" #include "absl/strings/str_cat.h" #include "absl/strings/string_view.h" #include "openssl/err.h" #include "quiche/common/platform/api/quiche_logging.h" namespace quiche { void DLogOpenSslErrors() { … } void ClearOpenSslErrors() { … } absl::Status SslErrorAsStatus(absl::string_view msg, absl::StatusCode code) { … } } // namespace quiche