Did you do something like : SSL_METHOD *meth = NULL; .// do some inits, maybe even mutlithread support . // load error strings, load algorithms . meth = SSLv3_server_method(); // operational implementation of accept is in there. if (....SSL_CTX_new(meth)).... if you are both server and client in your application you need SSLv3_method(), only client SSLv3_client_method() you have same fonctions if you need to use SSLv2 or both SSLv2 and v3 => SSLv23
<<winmail.dat>>