Hi All,

I used a mutex lock to prevent the SSL_accept() method being called by multiple 
thread concurrently since it may get coredump if there is no lock on 
SSL_accept() method. I am just wondering is the lock is still needed for 
openssl 1.0.2e version?

        mutex.lock();
        int rt = SSL_accept(SslSessionObject);
        mutex.unlock();

Thank you very much!
Bob


-- 
openssl-users mailing list
To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Reply via email to