| 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 7cd2298be1956d04c19df9ad28347adde5c5371b..d7335ae55dbfbcaf49da07d768c92c6abaea5c55 100644
|
| --- a/net/third_party/nss/ssl/sslimpl.h
|
| +++ b/net/third_party/nss/ssl/sslimpl.h
|
| @@ -930,6 +930,9 @@ struct ssl3StateStr {
|
| CERTCertificateList *clientCertChain; /* used by client */
|
| PRBool sendEmptyCert; /* used by client */
|
|
|
| + SECKEYPrivateKey *channelID; /* used by client */
|
| + SECKEYPublicKey *channelIDPub; /* used by client */
|
| +
|
| int policy;
|
| /* This says what cipher suites we can do, and should
|
| * be either SSL_ALLOWED or SSL_RESTRICTED
|
| @@ -1531,6 +1534,11 @@ extern SECStatus ssl3_RestartHandshakeAfterCertReq(sslSocket * ss,
|
| SECKEYPrivateKey * key,
|
| CERTCertificateList *certChain);
|
|
|
| +extern SECStatus ssl3_RestartHandshakeAfterChannelIDReq(
|
| + sslSocket *ss,
|
| + SECKEYPublicKey *channelIDPub,
|
| + SECKEYPrivateKey *channelID);
|
| +
|
| extern SECStatus ssl3_AuthCertificateComplete(sslSocket *ss, PRErrorCode error);
|
|
|
| /*
|
|
|