diff options
Diffstat (limited to 'indra/llcorehttp')
| -rw-r--r-- | indra/llcorehttp/examples/http_texture_load.cpp | 10 | ||||
| -rwxr-xr-x | indra/llcorehttp/tests/llcorehttp_test.cpp | 12 | 
2 files changed, 10 insertions, 12 deletions
| diff --git a/indra/llcorehttp/examples/http_texture_load.cpp b/indra/llcorehttp/examples/http_texture_load.cpp index b91aaf0593..f80e64c965 100644 --- a/indra/llcorehttp/examples/http_texture_load.cpp +++ b/indra/llcorehttp/examples/http_texture_load.cpp @@ -52,7 +52,7 @@  void init_curl();  void term_curl(); -unsigned long ssl_thread_id_callback(void); +void ssl_thread_id_callback(CRYPTO_THREADID*);  void ssl_locking_callback(int mode, int type, const char * file, int line);  void usage(std::ostream & out); @@ -624,7 +624,7 @@ void init_curl()  		}  		CRYPTO_set_locking_callback(ssl_locking_callback); -		CRYPTO_set_id_callback(ssl_thread_id_callback); +		CRYPTO_THREADID_set_callback(ssl_thread_id_callback);  	}  } @@ -640,12 +640,12 @@ void term_curl()  } -unsigned long ssl_thread_id_callback(void) +void ssl_thread_id_callback(CRYPTO_THREADID* pthreadid)  {  #if defined(WIN32) -	return (unsigned long) GetCurrentThread(); +	CRYPTO_THREADID_set_pointer(pthreadid, GetCurrentThread());  #else -	return (unsigned long) pthread_self(); +	CRYPTO_THREADID_set_numeric(pthreadid, pthread_self());  #endif  } diff --git a/indra/llcorehttp/tests/llcorehttp_test.cpp b/indra/llcorehttp/tests/llcorehttp_test.cpp index a310fc0508..d2df15ed5f 100755 --- a/indra/llcorehttp/tests/llcorehttp_test.cpp +++ b/indra/llcorehttp/tests/llcorehttp_test.cpp @@ -48,7 +48,7 @@  #include "llproxy.h"  #include "llcleanup.h" -unsigned long ssl_thread_id_callback(void); +void ssl_thread_id_callback(CRYPTO_THREADID*);  void ssl_locking_callback(int mode, int type, const char * file, int line);  #if 0	// lltut provides main and runner @@ -93,7 +93,7 @@ void init_curl()  		}  		CRYPTO_set_locking_callback(ssl_locking_callback); -		CRYPTO_set_id_callback(ssl_thread_id_callback); +		CRYPTO_THREADID_set_callback(ssl_thread_id_callback);  	}  	LLProxy::getInstance(); @@ -113,12 +113,12 @@ void term_curl()  } -unsigned long ssl_thread_id_callback(void) +void ssl_thread_id_callback(CRYPTO_THREADID* pthreadid)  {  #if defined(WIN32) -	return (unsigned long) GetCurrentThread(); +	CRYPTO_THREADID_set_pointer(pthreadid, GetCurrentThread());  #else -	return (unsigned long) pthread_self(); +	CRYPTO_THREADID_set_numeric(pthreadid, pthread_self());  #endif  } @@ -172,5 +172,3 @@ void stop_thread(LLCore::HttpRequest * req)  		}  	}  } - -	 | 
