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

Unified Diff: net/third_party/nss/ssl/sslimpl.h

Issue 10424013: Support TLS Channel IDs in NSS (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 8 years, 7 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/third_party/nss/ssl/sslimpl.h
diff --git a/net/third_party/nss/ssl/sslimpl.h b/net/third_party/nss/ssl/sslimpl.h
index 8ab865a1c4cd5e97193c7ec40bf37809b7dc29bf..86337b0b3be56fbf7a3f1a8bcba4d30198b34e7f 100644
--- a/net/third_party/nss/ssl/sslimpl.h
+++ b/net/third_party/nss/ssl/sslimpl.h
@@ -949,6 +949,8 @@ struct ssl3StateStr {
*/
SECItem nextProto;
SSLNextProtoState nextProtoState;
+ SECKEYPrivateKey * channelID; /* ECC private key. Used by client. */
+ SECKEYPublicKey * channelIDPub; /* ECC public key. Used by client. */
wtc 2012/05/24 23:10:03 Since these are closely related to client certific
agl 2012/05/30 15:28:33 Done.
PRUint16 mtu; /* Our estimate of the MTU */
};

Powered by Google App Engine
This is Rietveld 408576698