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_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ | 5 #ifndef NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ |
6 #define NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ | 6 #define NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ |
7 | 7 |
8 #include <stddef.h> | 8 #include <stddef.h> |
9 #include <stdint.h> | 9 #include <stdint.h> |
10 | 10 |
11 #include <map> | 11 #include <map> |
12 #include <memory> | 12 #include <memory> |
13 #include <string> | 13 #include <string> |
14 #include <vector> | 14 #include <vector> |
15 | 15 |
16 #include "base/macros.h" | 16 #include "base/macros.h" |
17 #include "base/memory/ref_counted.h" | 17 #include "base/memory/ref_counted.h" |
18 #include "base/strings/string_piece.h" | 18 #include "base/strings/string_piece.h" |
19 #include "base/synchronization/lock.h" | 19 #include "base/synchronization/lock.h" |
20 #include "net/base/ip_address.h" | 20 #include "net/base/ip_address.h" |
21 #include "net/base/ip_endpoint.h" | 21 #include "net/base/ip_endpoint.h" |
22 #include "net/base/net_export.h" | 22 #include "net/base/net_export.h" |
23 #include "net/quic/crypto/crypto_handshake.h" | 23 #include "net/quic/core/crypto/crypto_handshake.h" |
24 #include "net/quic/crypto/crypto_handshake_message.h" | 24 #include "net/quic/core/crypto/crypto_handshake_message.h" |
25 #include "net/quic/crypto/crypto_protocol.h" | 25 #include "net/quic/core/crypto/crypto_protocol.h" |
26 #include "net/quic/crypto/crypto_secret_boxer.h" | 26 #include "net/quic/core/crypto/crypto_secret_boxer.h" |
27 #include "net/quic/crypto/proof_source.h" | 27 #include "net/quic/core/crypto/proof_source.h" |
28 #include "net/quic/crypto/quic_compressed_certs_cache.h" | 28 #include "net/quic/core/crypto/quic_compressed_certs_cache.h" |
29 #include "net/quic/proto/cached_network_parameters.pb.h" | 29 #include "net/quic/core/proto/cached_network_parameters.pb.h" |
30 #include "net/quic/proto/source_address_token.pb.h" | 30 #include "net/quic/core/proto/source_address_token.pb.h" |
31 #include "net/quic/quic_time.h" | 31 #include "net/quic/core/quic_time.h" |
32 | 32 |
33 namespace net { | 33 namespace net { |
34 | 34 |
35 class CryptoHandshakeMessage; | 35 class CryptoHandshakeMessage; |
36 class EphemeralKeySource; | 36 class EphemeralKeySource; |
37 class KeyExchange; | 37 class KeyExchange; |
38 class ProofSource; | 38 class ProofSource; |
39 class QuicClock; | 39 class QuicClock; |
40 class QuicDecrypter; | 40 class QuicDecrypter; |
41 class QuicEncrypter; | 41 class QuicEncrypter; |
(...skipping 743 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
785 std::string cert_sct; | 785 std::string cert_sct; |
786 // The server config that is used for this proof (and the rest of the | 786 // The server config that is used for this proof (and the rest of the |
787 // request). | 787 // request). |
788 scoped_refptr<QuicCryptoServerConfig::Config> config; | 788 scoped_refptr<QuicCryptoServerConfig::Config> config; |
789 std::string primary_scid; | 789 std::string primary_scid; |
790 }; | 790 }; |
791 | 791 |
792 } // namespace net | 792 } // namespace net |
793 | 793 |
794 #endif // NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ | 794 #endif // NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ |
OLD | NEW |