Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1541)

Unified Diff: net/ssl/ssl_config.h

Issue 869393005: Perform ClientHello padding if the field trial is enabled (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@net_connection_error_uma
Patch Set: CR updates Created 5 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: net/ssl/ssl_config.h
diff --git a/net/ssl/ssl_config.h b/net/ssl/ssl_config.h
index 2cbc99568bc170877a45514cffa3d5f771e773b3..2158cf1b9bda36703024c4b00650b233e74eb313 100644
--- a/net/ssl/ssl_config.h
+++ b/net/ssl/ssl_config.h
@@ -159,6 +159,14 @@ struct NET_EXPORT SSLConfig {
NextProtoVector next_protos;
scoped_refptr<X509Certificate> client_cert;
+
+ // Information about how to proceed with fastradio padding.
+ // |enable_fastradio_padding| determines if the feature is enabled globally;
+ // |fastradio_padding_eligible| determines if a given endpoint should use it.
+ // |fastradio_padding_eligible| can be true when |enable_fastradio_padding| is
+ // false - in that case, fastradio padding will not be used.
jeremyim 2015/02/03 05:42:47 There are two bools here to capture 3 states we ca
+ bool enable_fastradio_padding;
+ bool fastradio_padding_eligible;
};
} // namespace net

Powered by Google App Engine
This is Rietveld 408576698