#ifndef QUICHE_QUIC_CORE_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_
#define QUICHE_QUIC_CORE_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_
#include <cstddef>
#include <cstdint>
#include <map>
#include <memory>
#include <string>
#include <vector>
#include "absl/strings/string_view.h"
#include "openssl/base.h"
#include "quiche/quic/core/crypto/crypto_handshake.h"
#include "quiche/quic/core/crypto/crypto_handshake_message.h"
#include "quiche/quic/core/crypto/crypto_protocol.h"
#include "quiche/quic/core/crypto/crypto_secret_boxer.h"
#include "quiche/quic/core/crypto/key_exchange.h"
#include "quiche/quic/core/crypto/proof_source.h"
#include "quiche/quic/core/crypto/quic_compressed_certs_cache.h"
#include "quiche/quic/core/crypto/quic_crypto_proof.h"
#include "quiche/quic/core/crypto/quic_random.h"
#include "quiche/quic/core/proto/cached_network_parameters_proto.h"
#include "quiche/quic/core/proto/source_address_token_proto.h"
#include "quiche/quic/core/quic_time.h"
#include "quiche/quic/platform/api/quic_export.h"
#include "quiche/quic/platform/api/quic_socket_address.h"
#include "quiche/common/platform/api/quiche_mutex.h"
#include "quiche/common/platform/api/quiche_reference_counted.h"
namespace quic {
class CryptoHandshakeMessage;
class ProofSource;
class QuicClock;
class QuicServerConfigProtobuf;
struct QuicSignedServerConfig;
struct QUICHE_EXPORT ClientHelloInfo { … };
namespace test {
class QuicCryptoServerConfigPeer;
}
class QUICHE_EXPORT PrimaryConfigChangedCallback { … };
class QUICHE_EXPORT ValidateClientHelloResultCallback { … };
class QUICHE_EXPORT ProcessClientHelloResultCallback { … };
class QUICHE_EXPORT BuildServerConfigUpdateMessageResultCallback { … };
class QUICHE_EXPORT RejectionObserver { … };
class QUICHE_EXPORT KeyExchangeSource { … };
class QUICHE_EXPORT QuicCryptoServerConfig { … };
struct QUICHE_EXPORT QuicSignedServerConfig
: public quiche::QuicheReferenceCounted { … };
}
#endif