| 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/crypto_handshake.h" | 18 #include "net/quic/crypto/crypto_handshake.h" |
| 19 #include "net/quic/crypto/crypto_protocol.h" | 19 #include "net/quic/crypto/crypto_protocol.h" |
| 20 #include "net/quic/crypto/crypto_secret_boxer.h" | 20 #include "net/quic/crypto/crypto_secret_boxer.h" |
| 21 #include "net/quic/quic_time.h" | 21 #include "net/quic/quic_time.h" |
| 22 | 22 |
| 23 namespace net { | 23 namespace net { |
| 24 | 24 |
| 25 class CryptoHandshakeMessage; |
| 25 class EphemeralKeySource; | 26 class EphemeralKeySource; |
| 26 class KeyExchange; | 27 class KeyExchange; |
| 27 class ProofSource; | 28 class ProofSource; |
| 28 class QuicClock; | 29 class QuicClock; |
| 29 class QuicDecrypter; | 30 class QuicDecrypter; |
| 30 class QuicEncrypter; | 31 class QuicEncrypter; |
| 31 class QuicRandom; | 32 class QuicRandom; |
| 32 class QuicServerConfigProtobuf; | 33 class QuicServerConfigProtobuf; |
| 33 class StrikeRegister; | 34 class StrikeRegister; |
| 34 class StrikeRegisterClient; | 35 class StrikeRegisterClient; |
| (...skipping 404 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 439 uint32 strike_register_window_secs_; | 440 uint32 strike_register_window_secs_; |
| 440 uint32 source_address_token_future_secs_; | 441 uint32 source_address_token_future_secs_; |
| 441 uint32 source_address_token_lifetime_secs_; | 442 uint32 source_address_token_lifetime_secs_; |
| 442 uint32 server_nonce_strike_register_max_entries_; | 443 uint32 server_nonce_strike_register_max_entries_; |
| 443 uint32 server_nonce_strike_register_window_secs_; | 444 uint32 server_nonce_strike_register_window_secs_; |
| 444 }; | 445 }; |
| 445 | 446 |
| 446 } // namespace net | 447 } // namespace net |
| 447 | 448 |
| 448 #endif // NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ | 449 #endif // NET_QUIC_CRYPTO_QUIC_CRYPTO_SERVER_CONFIG_H_ |
| OLD | NEW |