Re: calling SSL_library_init multiple times

2006-03-06 Thread Jagannadha Bhattu G
ion of from what I have gleaned from the docs and sources.   Randy   From: [EMAIL PROTECTED] [mailto: [EMAIL PROTECTED]] On Behalf Of Jagannadha Bhattu G Sent: Tuesday, February 28, 2006 1:42 AM To: openssl-users@openssl.org Subject: Re: calling SSL_library_init multiple times  

RE: calling SSL_library_init multiple times

2006-02-28 Thread Randy Turner
interpretation of from what I have gleaned from the docs and sources.   Randy   From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Jagannadha Bhattu G Sent: Tuesday, February 28, 2006 1:42 AM To: openssl-users@openssl.org Subject: Re: calling SSL_library_init multiple times

Re: calling SSL_library_init multiple times

2006-02-28 Thread Jagannadha Bhattu G
Thanks Nils and Andrew for the replies. -JBOn 2/27/06, Nils Larsch <[EMAIL PROTECTED]> wrote: Jagannadha Bhattu G wrote:> Hi,>> Can I call SSL_library_init multiple times in my code under different> threads?as SSL_library_init() initializes global tables it should onlybe called from one thread a t

Re: calling SSL_library_init multiple times

2006-02-27 Thread dsf
> Jagannadha Bhattu G <[EMAIL PROTECTED]>: > Hi, > > Can I call SSL_library_init multiple times in my code under different > threads? From the documented return values, I conclude that it should be > possible. Can some one confirm it? > > Thanks > JB > Yes it's possible. I'm doing like this f

Re: calling SSL_library_init multiple times

2006-02-27 Thread Nils Larsch
Jagannadha Bhattu G wrote: Hi, Can I call SSL_library_init multiple times in my code under different threads? as SSL_library_init() initializes global tables it should only be called from one thread a time and of course no other thread should use the global data while SSL_library_init() is r