Chromium Code Reviews| Index: net/test/spawned_test_server/base_test_server.h |
| diff --git a/net/test/spawned_test_server/base_test_server.h b/net/test/spawned_test_server/base_test_server.h |
| index bb82ed099751f99b8c22953921674762af8fa0ad..f18f5f1c361d36907f5b07a272907e4fbe9cdc02 100644 |
| --- a/net/test/spawned_test_server/base_test_server.h |
| +++ b/net/test/spawned_test_server/base_test_server.h |
| @@ -161,7 +161,11 @@ class BaseTestServer { |
| // and can be appropriately mocked out, so sending fake data here does not |
| // affect handshaking behaviour. |
| // TODO(ekasper): replace with valid SCT files for test certs. |
| - std::string signed_cert_timestamps; |
| + // (Fake) SignedCertificateTimestampList (as a raw binary string) to send in |
| + // a TLS extension. |
| + std::string signed_cert_timestamps_tls_ext; |
| + // Whether to staple the OCSP response. |
|
wtc
2013/12/13 16:15:50
Nit: add a blank line before this line.
ekasper
2013/12/13 17:26:10
Done.
|
| + bool staple_ocsp_response; |
| }; |
| // Pass as the 'host' parameter during construction to server on 127.0.0.1 |