| Index: net/tools/quic/quic_client.h
|
| diff --git a/net/tools/quic/quic_client.h b/net/tools/quic/quic_client.h
|
| index fa3e014af397243a90e67b08a8e5bb6af3584891..2d19e6c7d485857b4d8fd61d2a9e13c6be4f01bc 100644
|
| --- a/net/tools/quic/quic_client.h
|
| +++ b/net/tools/quic/quic_client.h
|
| @@ -43,10 +43,10 @@ class QuicClient : public EpollCallbackInterface {
|
| // completes.
|
| bool StartConnect();
|
|
|
| - // Returns true if the crypto handshake is in progress.
|
| - // Returns false if the handshake is complete or the connection has been
|
| - // closed.
|
| - bool CryptoHandshakeInProgress();
|
| + // Returns true if the crypto handshake has yet to establish encryption.
|
| + // Returns false if encryption is active (even if the server hasn't confirmed
|
| + // the handshake) or if the connection has been closed.
|
| + bool EncryptionBeingEstablished();
|
|
|
| // Disconnects from the QUIC server.
|
| void Disconnect();
|
|
|