| Index: net/quic/crypto/quic_crypto_server_config.h
|
| diff --git a/net/quic/crypto/quic_crypto_server_config.h b/net/quic/crypto/quic_crypto_server_config.h
|
| index 4b7985f24291b777c1609694eb781a30257f9263..159a9ca3417ebc37bbf622fea1f06634438605f7 100644
|
| --- a/net/quic/crypto/quic_crypto_server_config.h
|
| +++ b/net/quic/crypto/quic_crypto_server_config.h
|
| @@ -515,6 +515,27 @@ class NET_EXPORT_PRIVATE QuicCryptoServerConfig {
|
| ValidateClientHelloResultCallback::Result* client_hello_state,
|
| ValidateClientHelloResultCallback* done_cb) const;
|
|
|
| + // Callback class for bridging between EvaluateClientHello and
|
| + // EvaluateClientHelloAfterGetProof
|
| + friend class EvaluateClientHelloCallback;
|
| +
|
| + // Continuation of EvaluateClientHello after the call to
|
| + // ProofSource::GetProof. |found_error| indicates whether an error was
|
| + // detected in EvaluateClientHello, and |get_proof_failed| indicates whether
|
| + // GetProof failed. If GetProof was not run, then |get_proof_failed| will be
|
| + // set to false.
|
| + void EvaluateClientHelloAfterGetProof(
|
| + bool found_error,
|
| + const IPAddress& server_ip,
|
| + QuicVersion version,
|
| + const uint8_t* primary_orbit,
|
| + scoped_refptr<Config> requested_config,
|
| + scoped_refptr<Config> primary_config,
|
| + QuicCryptoProof* crypto_proof,
|
| + bool get_proof_failed,
|
| + ValidateClientHelloResultCallback::Result* client_hello_state,
|
| + ValidateClientHelloResultCallback* done_cb) const;
|
| +
|
| // BuildRejection sets |out| to be a REJ message in reply to |client_hello|.
|
| void BuildRejection(QuicVersion version,
|
| const Config& config,
|
|
|