Re: Strange error for multiple SSL sessions

2008-09-26 Thread qunying
When error occurs, sometimes I get error:140F3042:SSL routines:SSL_U NDEFINED_CONST_FUNCTION:called a function you should not call. qunying wrote: Hi, Thanks for your reply. Here is my program flow: SSL_CTX_new(SSLv23_server_method()); // setting veraires options and certificates SSL_OP_ALL|SS

Re: Strange error for multiple SSL sessions

2008-09-26 Thread qunying
When error occurs, sometimes I get error:140F3042:SSL routines:SSL_U NDEFINED_CONST_FUNCTION:called a function you should not call. qunying wrote: Hi, Thanks for your reply. Here is my program flow: SSL_CTX_new(SSLv23_server_method()); // setting veraires options and certificates SSL_OP_ALL|SS

Re: Strange error for multiple SSL sessions

2008-09-25 Thread qunying
Hi, Thanks for your reply. Here is my program flow: SSL_CTX_new(SSLv23_server_method()); // setting veraires options and certificates SSL_OP_ALL|SSL_OP_NO_SESSION_RESUMPTION_ON_RENEGOTIATION create a non-blocking socket main_sock and add it to epoll listening queue in the main loop. When a c

Re: Strange error for multiple SSL sessions

2008-09-24 Thread vinni rathore
Hello, I also created the same kind of Server that handle the different clients but the only difference that i have different threads for reading and writing as my application needed... May be u need to check SSL structure for both read and write for different connections. There is no problem in