Chromium Code Reviews| Index: net/quic/quic_crypto_client_stream.h |
| diff --git a/net/quic/quic_crypto_client_stream.h b/net/quic/quic_crypto_client_stream.h |
| index e85a764049a22c9c5ab6511895406f6ae86567d3..b5369d8b2f225a65aade1de660015cd24fdb7978 100644 |
| --- a/net/quic/quic_crypto_client_stream.h |
| +++ b/net/quic/quic_crypto_client_stream.h |
| @@ -47,12 +47,18 @@ class NET_EXPORT_PRIVATE QuicCryptoClientStream : public QuicCryptoStream { |
| STATE_IDLE, |
| STATE_SEND_CHLO, |
| STATE_RECV_REJ, |
| + STATE_PROOF_VERIFY, |
| + STATE_PROOF_VERIFICATION_COMPLETED, |
|
wtc
2013/07/02 00:56:38
Nit: these two states should be named STATE_VERIFY
ramant (doing other things)
2013/07/02 14:19:50
Done.
|
| STATE_RECV_SHLO, |
| }; |
| // DoHandshakeLoop performs a step of the handshake state machine. Note that |
| // |in| is NULL for the first call. |
| - void DoHandshakeLoop(const CryptoHandshakeMessage* in); |
| + void DoHandshakeLoop(const CryptoHandshakeMessage* in, int result); |
| + |
| + void VerifyProofCompleted(int result); |
|
wtc
2013/07/02 00:56:38
Nit: this method probably should be named OnVerify
ramant (doing other things)
2013/07/02 14:19:50
Done.
|
| + |
| + base::WeakPtrFactory<QuicCryptoClientStream> weak_factory_; |
| State next_state_; |
| // num_client_hellos_ contains the number of client hello messages that this |