| Index: net/socket/ssl_client_socket_nss.h
|
| ===================================================================
|
| --- net/socket/ssl_client_socket_nss.h (revision 63182)
|
| +++ net/socket/ssl_client_socket_nss.h (working copy)
|
| @@ -62,6 +62,7 @@
|
| virtual void SetSubresourceSpeculation();
|
| virtual void SetOmniboxSpeculation();
|
| virtual bool WasEverUsed() const;
|
| + virtual bool UsingTCPFastOpen() const;
|
|
|
| // Socket methods:
|
| virtual int Read(IOBuffer* buf, int buf_len, CompletionCallback* callback);
|
| @@ -73,6 +74,9 @@
|
| // Initializes NSS SSL options. Returns a net error code.
|
| int InitializeSSLOptions();
|
|
|
| + // Initializes the socket peer name in SSL. Returns a net error code.
|
| + int InitializeSSLPeerName();
|
| +
|
| void InvalidateSessionIfBadCertificate();
|
| #if defined(OS_MACOSX) || defined(OS_WIN)
|
| // Creates an OS certificate from a DER-encoded certificate.
|
| @@ -188,6 +192,9 @@
|
| // connections.
|
| bool netnanny_mitm_detected_;
|
|
|
| + // True if the peer name has been initialized.
|
| + bool peername_initialized_;
|
| +
|
| // This pointer is owned by the caller of UseDNSSEC.
|
| DNSSECProvider* dnssec_provider_;
|
| // The time when we started waiting for DNSSEC records.
|
|
|