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
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
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
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
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
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