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 <map> | 8 #include <map> |
9 #include <string> | 9 #include <string> |
10 #include <vector> | 10 #include <vector> |
11 | 11 |
12 #include "base/memory/ref_counted.h" | 12 #include "base/memory/ref_counted.h" |
13 #include "base/memory/scoped_ptr.h" | 13 #include "base/memory/scoped_ptr.h" |
14 #include "base/strings/string_piece.h" | 14 #include "base/strings/string_piece.h" |
15 #include "base/synchronization/lock.h" | 15 #include "base/synchronization/lock.h" |
16 #include "net/base/ip_endpoint.h" | 16 #include "net/base/ip_endpoint.h" |
17 #include "net/base/net_export.h" | 17 #include "net/base/net_export.h" |
| 18 #include "net/quic/crypto/cached_network_parameters.h" |
18 #include "net/quic/crypto/crypto_handshake.h" | 19 #include "net/quic/crypto/crypto_handshake.h" |
19 #include "net/quic/crypto/crypto_handshake_message.h" | 20 #include "net/quic/crypto/crypto_handshake_message.h" |
20 #include "net/quic/crypto/crypto_protocol.h" | 21 #include "net/quic/crypto/crypto_protocol.h" |
21 #include "net/quic/crypto/crypto_secret_boxer.h" | 22 #include "net/quic/crypto/crypto_secret_boxer.h" |
22 #include "net/quic/crypto/source_address_token.h" | |
23 #include "net/quic/quic_time.h" | 23 #include "net/quic/quic_time.h" |
24 | 24 |
25 namespace net { | 25 namespace net { |
26 | 26 |
27 class CryptoHandshakeMessage; | 27 class CryptoHandshakeMessage; |
28 class EphemeralKeySource; | 28 class EphemeralKeySource; |
29 class KeyExchange; | 29 class KeyExchange; |
30 class ProofSource; | 30 class ProofSource; |
31 class QuicClock; | 31 class QuicClock; |
32 class QuicDecrypter; | 32 class QuicDecrypter; |
(...skipping 498 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
531 uint32 source_address_token_lifetime_secs_; | 531 uint32 source_address_token_lifetime_secs_; |
532 uint32 server_nonce_strike_register_max_entries_; | 532 uint32 server_nonce_strike_register_max_entries_; |
533 uint32 server_nonce_strike_register_window_secs_; | 533 uint32 server_nonce_strike_register_window_secs_; |
534 | 534 |
535 DISALLOW_COPY_AND_ASSIGN(QuicCryptoServerConfig); | 535 DISALLOW_COPY_AND_ASSIGN(QuicCryptoServerConfig); |
536 }; | 536 }; |
537 | 537 |
538 } // namespace net | 538 } // namespace net |
539 | 539 |
540 #endif // NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ | 540 #endif // NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ |
OLD | NEW |