> To guess what is going on, I'd have to know
>
> - whether your application is operating as a client or a server
> (an SSL/TLS client apparently) and
yep, it's a client. is the renegotiation code different for a client than for a server
?
>
> - what protocol version is used.
>
> SSL 2.0 do
ED]]
> Sent: 28 January 2003 12:19
> To: [EMAIL PROTECTED]
> Subject: Re: renegotiation in 0.9.7
>
>
> On Mon, Jan 27, 2003 at 03:21:45PM -, Nigel Spowage wrote:
>
> > okay, so the proper way to renegotiate a connection is :
> >
> > 1 - call SSL_renegot
y to renegotiate a connection is :
1 - call SSL_renegotiate()
2 - call SSL_do_handshake()
3 - wait for either
3a- SSL_renegotiate_pending() to return 0, or
3b- an acceptable amount of time (which means rengotiation has failed)
4 - call SSL_renegotiate()
5 - call SSL_do_handshake()
is that righ
but absolutely nothing is sent.
i'm using SSL_VERIFY_PEER and SSL_FAIL_IF_NO_PEER_CERT as my verify options in both
directions (client->server and server->client).
can anyone help ?
cheers
nigel spowage