RE: libwww-SSL

Yajun,

Explicit call to SSL_connect is not necessary. If the connection state is set
like in HTSSL_connectSetup:

 SSL_set_connect_state(htssl->ssl);

then call to SSL_read or SSL_write will trigger the handshake.

You can modify your local copy of HTSSL_connectSetup to do:

 SSL_set_fd(htssl->ssl, sd);
 SSL_connect(htssl->ssl);

Olga.

On 13-Aug-99 yajun_liu@peoplesoft.com wrote:
> 
> Hi there,
> 
> I could not figure out how the handshake takes place in libwww-SSL library.
> The function SSL_connect does never got called. Any hints?
> 
> --Yajun

Received on Friday, 13 August 1999 15:18:28 UTC