ssl - How to send a sslsocket to a running process -


this question has answer here:

the first process receive , send data (to complete authentication) after accept sslsocket, send sslsocket process.

i know multiprocessing.reduction.send_handle can send socket, didn't work sslsocket.

please help.

this not possible.
ssl sockets in python implemented using openssl. each ssl socket in python there user space state managed openssl. transferring ssl socket process need internal ssl state transferred too. but, python has no direct access state because uses openssl library libraries api , can not transfer it.


Comments

Popular posts from this blog

python - Operations inside variables -

Generic Map Parameter java -

arrays - What causes a java.lang.ArrayIndexOutOfBoundsException and how do I prevent it? -