Debug on x86_64 for openssl-1.0.0-beta2

2009-07-06 Thread Emanuele Cesena
Is there a reason to not have a debug-linux-x86_64 entry in Configure? I've tried adding such line (without libefence) and I only got 2 warnings. Please find in attachment a working patch. After applying the patch, on my x86_64 platform openssl compiles with: ./config [-shared] -d -Werror The

Determining if client requests ssl handshake

2009-07-06 Thread Konstantin Ivanov
Hi all, I was wondering if it is possible to determine if client is requesting an ssl handshake on regular socket connection and if client does request it, continue with SSL handshake and enable secure communication? What is happening is that if I have a server, but I accept a connection

RE: Determining if client requests ssl handshake

2009-07-06 Thread David Schwartz
Konstantin Ivanov I was wondering if it is possible to determine if client is requesting an ssl handshake on regular socket connection and if client does request it, continue with SSL handshake and enable secure communication? What is happening is that if I have a server, but I accept a

Re: Determining if client requests ssl handshake

2009-07-06 Thread Howard Chu
David Schwartz wrote: I've managed to do this without problems for SMTP, POP, HTTP, and a few custom text-based protocols. Note that the protocol must be such that the client sends data first. If the server must send data first, then there is no way for the server to know what to send.