Re: Is it possible that calling ssl_accept in multi-threading circumstance will result in app to crash?

2014-04-14 Thread 2234822 jeff
In my code, the server thread listen for incoming connection request, when there is a new request, it spawns a new client thread to handle the request. Does it need synchronization between multiple client threads by following the way pointed out here https://www.openssl.org/support/faq.html#PROG1?

Is it possible that calling ssl_accept in multi-threading circumstance will result in app to crash?

2014-03-26 Thread 2234822 jeff
Dear users, I keep getting some application crash in openssl module, I checked the dumps and stacks and found that although the stacks vary, the ssl_accept function is found on all of them, below are some of exmaples. I google the related information about this, looks like there is some problem wh