Hello everyone,
I have an OpenSSL client (Windows) and server (Ubuntu). When my client tries to
disconnect from the server, but the server happens to call SSL_write during the
disconnect process by chance, then SSL_write freezes. I tried to check the
socket via select and I tried to make it non
Hello everyone,
I have a server that is supposed to accept only one client. The connection
works just fine. When I tried to connect to the server with a second client
while another connection is already active, I expected that the 2nd client
would return some error code, but instead it crashes
According to the answer I received at http://stackoverflow.com/questions/29845527/how-to-properly-uninitialize-openssl there is apparently a ticket with my problem out there already, namely the one here: https://rt.openssl.org/Ticket/Display.html?id=2561 The newest answer even references my thread
Hello everyone,
I am using OpenSSL sockets and I have the problem I described in the following
thread, i.e. a bunch of memory-leaks that happen most likely because I don't
uninitialize OpenSSL properly. I believe this to be the cause, because the
errors appeared exactly at the moment when I swi