gnutls-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: confirmation that debian #480041 is a gnutls problem, and steps to r


From: Joe Orton
Subject: Re: confirmation that debian #480041 is a gnutls problem, and steps to reproduce
Date: Fri, 21 Nov 2008 08:29:44 +0000
User-agent: Mutt/1.5.18 (2008-05-17)

On Fri, Nov 21, 2008 at 09:24:02AM +0200, Nikos Mavrogiannopoulos wrote:
> For neon to solve this, it has to perform a handshake after the
> rehandshake request has been required.

Ah, I didn't realise that - OpenSSL will automatically rehandshake 
whenever requested by the server.  So to provide the equivalent 
behaviour with GnuTLS, I have to do something like:

start:
   ret = gnutls_record_send(blah);
   if (ret == GNUTLS_E_REHANDSHAKE) {
       gnutls_handshake(blah);
       goto start;
   }

and similarly with calls to record_recv?

Regards, Joe




reply via email to

[Prev in Thread] Current Thread [Next in Thread]