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
used.. Am dead sure its just a minor handshake issue coz of misconfiguration.. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Behalf Of Robert Stober Sent: Thursday, April 06, 2006 7:47 AM To: openssl-users@openssl.org Subject: Problem connecting using SSL_connect

Problem connecting using SSL_connect

2006-04-05 Thread Robert Stober
Hi, My application is very simple, a client that connects to a server and they verify each other's identity. Right now I'm just trying to get them to connect. I'm using OpenSSL 0.9.7. I started with the example application in the O'Reilly "Network Security with OpenSSL" book. I was able to integra