| OLD | NEW |
| 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 // Copyright (c) 2012 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_QUIC_CRYPTO_STREAM_H_ | 5 #ifndef NET_QUIC_QUIC_CRYPTO_STREAM_H_ |
| 6 #define NET_QUIC_QUIC_CRYPTO_STREAM_H_ | 6 #define NET_QUIC_QUIC_CRYPTO_STREAM_H_ |
| 7 | 7 |
| 8 #include "base/basictypes.h" | 8 #include "base/basictypes.h" |
| 9 #include "net/quic/crypto/crypto_framer.h" | 9 #include "net/quic/crypto/crypto_framer.h" |
| 10 #include "net/quic/crypto/crypto_utils.h" | 10 #include "net/quic/crypto/crypto_utils.h" |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 | 66 |
| 67 protected: | 67 protected: |
| 68 bool encryption_established_; | 68 bool encryption_established_; |
| 69 bool handshake_confirmed_; | 69 bool handshake_confirmed_; |
| 70 | 70 |
| 71 QuicCryptoNegotiatedParameters crypto_negotiated_params_; | 71 QuicCryptoNegotiatedParameters crypto_negotiated_params_; |
| 72 | 72 |
| 73 private: | 73 private: |
| 74 CryptoFramer crypto_framer_; | 74 CryptoFramer crypto_framer_; |
| 75 | 75 |
| 76 bool is_server_; | |
| 77 | |
| 78 DISALLOW_COPY_AND_ASSIGN(QuicCryptoStream); | 76 DISALLOW_COPY_AND_ASSIGN(QuicCryptoStream); |
| 79 }; | 77 }; |
| 80 | 78 |
| 81 } // namespace net | 79 } // namespace net |
| 82 | 80 |
| 83 #endif // NET_QUIC_QUIC_CRYPTO_STREAM_H_ | 81 #endif // NET_QUIC_QUIC_CRYPTO_STREAM_H_ |
| OLD | NEW |