Re: Problem with TLS session resumption

2007-03-15 Thread jimmy
Vladislav Marinov wrote: Hi, Sorry for bothering for a second time on the same issue. I have a problem with session resumption in OpenSSL TLS. Did you try checking the session timeout value in the server? -jb -- mathematician, n.: Some one who believes imaginary things appear right

Re: Problem with TLS session resumption

2007-03-15 Thread Vladislav Marinov
jimmy wrote: Vladislav Marinov wrote: Hi, Sorry for bothering for a second time on the same issue. I have a problem with session resumption in OpenSSL TLS. Did you try checking the session timeout value in the server? Hi, thanks for the idea. I checked and unfortunately the session

Re: Problem with TLS session resumption

2007-03-15 Thread Victor Duchovni
On Thu, Mar 15, 2007 at 01:37:41AM +0100, Vladislav Marinov wrote: 2) This is the server side part: static int s_server_session_id_context = 1; SSL_CTX_set_session_id_context(tls_info - ctx, (void *)s_server_session_id_context,

Re: Problem with TLS session resumption

2007-03-15 Thread Jim Sansing
I don't know if this is causing your problem, but if the session cannot be re-established due to the timeout, you could set the socket option, SO_REUSEPORT, on both the client and server sockets when they are created. (NOTE: Check that it is supported on your platform, if not, then you would have