// Copyright (c) 2019 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. #ifndef QUICHE_QUIC_CORE_INTERNET_CHECKSUM_H_ #define QUICHE_QUIC_CORE_INTERNET_CHECKSUM_H_ #include <cstddef> #include <cstdint> #include "absl/strings/string_view.h" #include "absl/types/span.h" #include "quiche/common/platform/api/quiche_export.h" namespace quic { // Incrementally compute an Internet header checksum as described in RFC 1071. class QUICHE_EXPORT InternetChecksum { … }; } // namespace quic #endif // QUICHE_QUIC_CORE_INTERNET_CHECKSUM_H_