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

sql - Time in datatime field -

javascript - How to split the success output from an Ajax post? -

java - sharing object across different classes -