RE: How to pass SSL connection/object from one process to another?

2005-05-10 Thread lewislyk
If using the third process to hold the SSL connection act like stunnel, But the performance is slower, so I prefer without the third process. -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of David Schwartz Sent: Tuesday, May 10, 2005 11:55 PM To: openssl-us

RE: How to pass SSL connection/object from one process to another?

2005-05-10 Thread lewislyk
pass SSL connection/object from one process to another? lewislyk wrote: > Thanks for your solution. > > But if using shared memory, the shared memory address attached in the > [Request Handler] and [Request Parser] may be different, the SSL object will > not usable in both process.

RE: How to pass SSL connection/object from one process to another?

2005-05-09 Thread lewislyk
Goetz Babin-Ebell Sent: Tuesday, May 10, 2005 4:17 AM To: openssl-users@openssl.org Subject: Re: How to pass SSL connection/object from one process to another? lewislyk wrote: > Sorry, I do not have the idea what you mean? > What is the OpenSSL memory handler? If I was unclear: OpenSSL doesn&

RE: How to pass SSL connection/object from one process to another?

2005-05-09 Thread lewislyk
/object from one process to another? lewislyk wrote: > I don't know, it seems can't, because the SSL object is created by SSL_new() > which dynamic allocated memory for the object, > > If you view the file ssl.h, you will found the SSL structure definition, it > is comp

RE: How to pass SSL connection/object from one process to another?

2005-05-09 Thread lewislyk
memory or message queue possibly? Dave Peter Senior Software Engineer, Unix Clients Citrix Systems (R&D) Ltd Chalfont St Peter, UK +44 (0)1753 276522 [EMAIL PROTECTED] www.citrix.com -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of lewislyk Sent: 09

RE: How to pass SSL connection/object from one process to another?

2005-05-09 Thread lewislyk
sage- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of lewislyk Sent: 09 May 2005 06:31 To: openssl-users@openssl.org Subject: How to pass SSL connection/object from one process to another? Hi, I wrote a server program that containing 3 executable file. When the main executable

How to pass SSL connection/object from one process to another?

2005-05-08 Thread lewislyk
Hi, I wrote a server program that containing 3 executable file. When the main executable file executed, it will execve another 2 executable file and using pipe to communicate with them. Main executable = [Request Parser] Other 2 executable = [Request Handler] Request handling procedure: 1: Th