Re: [openssl-users] forking server question

2017-05-07 Thread Salz, Rich via openssl-users
> Make that N processes, and understand why this should be a FAQ. Have no problem with adding to the FAQ. It's likely to be our next code-health target :) -- openssl-users mailing list To unsubscribe: https://mta.openssl.org/mailman/listinfo/openssl-users

Re: [openssl-users] forking server question

2017-05-07 Thread Jakob Bohm
On 06/05/2017 14:19, Salz, Rich via openssl-users wrote: Please excuse what is a simple question: what is the proper way to clean up in the parent and child when writing a forking server using OpenSSL? It's not simple. Can you have the parent just do socket stuff, and then accept/fork and have

Re: [openssl-users] forking server question

2017-05-06 Thread Salz, Rich via openssl-users
> Please excuse what is a simple question: what is the proper way to clean up > in the parent and child when writing a forking server using OpenSSL? It's not simple. Can you have the parent just do socket stuff, and then accept/fork and have the child do all the OpenSSL calls? Having two