Topic: [SOLVED] Thread Safety
The documents for WolfSSL say that once its created the CTX is thread safe and
that activities on individual wolfssl connections/objects need to be protected from access by multiple threads.
I implemented this and the internal SSL objects are showing signs of corruption.
(example FreeZero is being called with huge negative sizes)
IF I put a single global critical section around all ssl connection instances everything the problem goes away.
Thoughts Ideas?