ssl - How to send a sslsocket to a running process -
this question has answer here:
- pass connected ssl socket process 1 answer
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
Post a Comment