Re: SSL_write() crashes

2014-02-19 Thread ashish2881
I am also facing similar kind of issue : I am trying to send message to host from my system with tls connection . It's non-blocking case. i make host unreachable for some time .when i make it up my system crashes . crash info says : double free issue 0x018e5fee in CRYPTO_free (str=0x2a

Re: SSL_write() crashes

2006-02-23 Thread Kyle Hamilton
if there is a way to circumvent this > in a cross-platform nature? > > Dusty > > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of Kyle Hamilton > Sent: Wednesday, February 22, 2006 4:31 PM > To: openssl-users@openssl.org > Su

RE: SSL_write() crashes

2006-02-22 Thread Mikhail Kruk
g Subject: Re: SSL_write() crashes Chances are, you received a SIGPIPE. If not caught, that's a fatal signal. (SIGPIPE occurs when you try to write to a socket that has been closed by the other end.) -Kyle H On 2/22/06, Dusty Hendrickson <[EMAIL PROTECTED]> wrote: We currently have an

RE: SSL_write() crashes

2006-02-22 Thread Dusty Hendrickson
Sent: Wednesday, February 22, 2006 4:31 PM To: openssl-users@openssl.org Subject: Re: SSL_write() crashes Chances are, you received a SIGPIPE. If not caught, that's a fatal signal. (SIGPIPE occurs when you try to write to a socket that has been closed by the other end.) -Kyle H On 2/22

Re: SSL_write() crashes

2006-02-22 Thread Kyle Hamilton
Chances are, you received a SIGPIPE. If not caught, that's a fatal signal. (SIGPIPE occurs when you try to write to a socket that has been closed by the other end.) -Kyle H On 2/22/06, Dusty Hendrickson <[EMAIL PROTECTED]> wrote: > We currently have an SSL client/server setup that uses a basic

SSL_write() crashes

2006-02-22 Thread Dusty Hendrickson
We currently have an SSL client/server setup that uses a basic "send request, receive response" architecture. In one scenario, we did something similar to the following: - Client: 1. Send request 2. Delete connection Server: 1. Wait for connection 2. Process request