| Index: net/socket/ssl_session_cache_openssl_unittest.cc
|
| diff --git a/net/socket/ssl_session_cache_openssl_unittest.cc b/net/socket/ssl_session_cache_openssl_unittest.cc
|
| index 54b1e3be5d6431e85a08170c7da816433934d66b..78bac63ccb285cc28435b2193476baa989e70818 100644
|
| --- a/net/socket/ssl_session_cache_openssl_unittest.cc
|
| +++ b/net/socket/ssl_session_cache_openssl_unittest.cc
|
| @@ -20,12 +20,12 @@
|
| // |s| is the target SSL connection handle.
|
| // |session| is non-0 to ask for the creation of a new session. If 0,
|
| // this will set an empty session with no ID instead.
|
| -extern "C" int ssl_get_new_session(SSL* s, int session);
|
| +extern "C" OPENSSL_EXPORT int ssl_get_new_session(SSL* s, int session);
|
|
|
| // This is an internal OpenSSL function which is used internally to add
|
| // a new session to the cache. It is normally triggered by a succesful
|
| // connection. However, this unit test does not use the network at all.
|
| -extern "C" void ssl_update_cache(SSL* s, int mode);
|
| +extern "C" OPENSSL_EXPORT void ssl_update_cache(SSL* s, int mode);
|
|
|
| namespace net {
|
|
|
|
|