| 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 |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 #include "net/quic/core/quic_time.h" | 31 #include "net/quic/core/quic_time.h" |
| 32 #include "net/quic/platform/api/quic_socket_address.h" | 32 #include "net/quic/platform/api/quic_socket_address.h" |
| 33 | 33 |
| 34 namespace net { | 34 namespace net { |
| 35 | 35 |
| 36 class CryptoHandshakeMessage; | 36 class CryptoHandshakeMessage; |
| 37 class EphemeralKeySource; | 37 class EphemeralKeySource; |
| 38 class KeyExchange; | 38 class KeyExchange; |
| 39 class ProofSource; | 39 class ProofSource; |
| 40 class QuicClock; | 40 class QuicClock; |
| 41 class QuicDecrypter; | |
| 42 class QuicEncrypter; | |
| 43 class QuicRandom; | 41 class QuicRandom; |
| 44 class QuicServerConfigProtobuf; | 42 class QuicServerConfigProtobuf; |
| 45 struct QuicSignedServerConfig; | 43 struct QuicSignedServerConfig; |
| 46 | 44 |
| 47 // ClientHelloInfo contains information about a client hello message that is | 45 // ClientHelloInfo contains information about a client hello message that is |
| 48 // only kept for as long as it's being processed. | 46 // only kept for as long as it's being processed. |
| 49 struct ClientHelloInfo { | 47 struct ClientHelloInfo { |
| 50 ClientHelloInfo(const QuicIpAddress& in_client_ip, QuicWallTime in_now); | 48 ClientHelloInfo(const QuicIpAddress& in_client_ip, QuicWallTime in_now); |
| 51 ClientHelloInfo(const ClientHelloInfo& other); | 49 ClientHelloInfo(const ClientHelloInfo& other); |
| 52 ~ClientHelloInfo(); | 50 ~ClientHelloInfo(); |
| (...skipping 755 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 808 bool send_expect_ct_header; | 806 bool send_expect_ct_header; |
| 809 | 807 |
| 810 private: | 808 private: |
| 811 friend class base::RefCounted<QuicSignedServerConfig>; | 809 friend class base::RefCounted<QuicSignedServerConfig>; |
| 812 virtual ~QuicSignedServerConfig(); | 810 virtual ~QuicSignedServerConfig(); |
| 813 }; | 811 }; |
| 814 | 812 |
| 815 } // namespace net | 813 } // namespace net |
| 816 | 814 |
| 817 #endif // NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ | 815 #endif // NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ |
| OLD | NEW |