Re: Problem connecting using SSL_connect

2006-04-06 Thread Marek Marcola
Hello, > Is there any way to see --exactly-- what's going on? To log exactly > what's going on during the connection/handshake procedure? Try to add connection callback function, for example: static void tls_connection_info_cb(const SSL * ssl, int type, int val) { if (type & SSL_CB_LOOP) {

RE: Problem connecting using SSL_connect

2006-04-05 Thread Gayathri Sundar
The accept could have failed for any reason such as mismatch of ssl versions/ no matching ciphers/ untrusted certificate / so check on the wire whats going on. From your code snipped, am not sure what exactly setup_client_ctx() does or what ciphers have been set on the server ctx..the SSL_METHOD u