Chromium Code Reviews| Index: net/socket/client_socket_factory.h |
| =================================================================== |
| --- net/socket/client_socket_factory.h (revision 74291) |
| +++ net/socket/client_socket_factory.h (working copy) |
| @@ -67,6 +67,15 @@ |
| // Instructs the default ClientSocketFactory to use |factory| to create |
| // SSLClientSocket objects. |
| static void SetSSLClientSocketFactory(SSLClientSocketFactory factory); |
| + |
| + // Clears cache used for SSL session resumption. |
| + static void ClearSSLSessionCache(); |
| + |
| + // Instructs the ClientSocketFactory to use |clear| to clear the |
| + // SSL session cache. |
| + static void SetClearSSLSessionCache(void (*clear)()); |
| + |
| + static void DefaultClearSSLSessionCache(); |
|
wtc
2011/02/15 20:50:40
These three static methods should be part of the
S
|
| }; |
| } // namespace net |