| OLD | NEW |
| 1 // Copyright 2013 The Chromium Authors. All rights reserved. | 1 // Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be | 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. | 3 // found in the LICENSE file. |
| 4 | 4 |
| 5 #ifndef NET_QUIC_CORE_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ | 5 #ifndef NET_QUIC_CORE_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ |
| 6 #define NET_QUIC_CORE_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ | 6 #define NET_QUIC_CORE_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ |
| 7 | 7 |
| 8 #include <stddef.h> | 8 #include <cstddef> |
| 9 #include <stdint.h> | 9 #include <cstdint> |
| 10 | |
| 11 #include <map> | 10 #include <map> |
| 12 #include <memory> | 11 #include <memory> |
| 13 #include <string> | 12 #include <string> |
| 14 #include <vector> | 13 #include <vector> |
| 15 | 14 |
| 16 #include "base/macros.h" | 15 #include "base/macros.h" |
| 17 #include "base/strings/string_piece.h" | 16 #include "base/strings/string_piece.h" |
| 18 #include "net/base/ip_address.h" | |
| 19 #include "net/base/ip_endpoint.h" | |
| 20 #include "net/quic/core/crypto/crypto_handshake.h" | 17 #include "net/quic/core/crypto/crypto_handshake.h" |
| 21 #include "net/quic/core/crypto/crypto_handshake_message.h" | 18 #include "net/quic/core/crypto/crypto_handshake_message.h" |
| 22 #include "net/quic/core/crypto/crypto_protocol.h" | 19 #include "net/quic/core/crypto/crypto_protocol.h" |
| 23 #include "net/quic/core/crypto/crypto_secret_boxer.h" | 20 #include "net/quic/core/crypto/crypto_secret_boxer.h" |
| 24 #include "net/quic/core/crypto/proof_source.h" | 21 #include "net/quic/core/crypto/proof_source.h" |
| 25 #include "net/quic/core/crypto/quic_compressed_certs_cache.h" | 22 #include "net/quic/core/crypto/quic_compressed_certs_cache.h" |
| 26 #include "net/quic/core/crypto/quic_crypto_proof.h" | 23 #include "net/quic/core/crypto/quic_crypto_proof.h" |
| 27 #include "net/quic/core/proto/cached_network_parameters.pb.h" | 24 #include "net/quic/core/proto/cached_network_parameters.pb.h" |
| 28 #include "net/quic/core/proto/source_address_token.pb.h" | 25 #include "net/quic/core/proto/source_address_token.pb.h" |
| 29 #include "net/quic/core/quic_time.h" | 26 #include "net/quic/core/quic_time.h" |
| (...skipping 769 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 799 QuicReferenceCountedPointer<QuicCryptoServerConfig::Config> config; | 796 QuicReferenceCountedPointer<QuicCryptoServerConfig::Config> config; |
| 800 std::string primary_scid; | 797 std::string primary_scid; |
| 801 | 798 |
| 802 protected: | 799 protected: |
| 803 ~QuicSignedServerConfig() override; | 800 ~QuicSignedServerConfig() override; |
| 804 }; | 801 }; |
| 805 | 802 |
| 806 } // namespace net | 803 } // namespace net |
| 807 | 804 |
| 808 #endif // NET_QUIC_CORE_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ | 805 #endif // NET_QUIC_CORE_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ |
| OLD | NEW |