in reply to How to store the openssl's SSL structure in perl Net::SSLeay
What you want is just not possible. The openssl SSL structure lives in the openssl library and only an integer (likely, a pointer to the C structure) is exported to Perl.
I wonder why you want to store the SSL structure in a file? A socket connection does usually not survive if the program that created it exits. You will have to recreate the connection every time your program runs.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: How to store the openssl's SSL structure in perl Net::SSLeay
by fwingx (Novice) on Aug 07, 2013 at 07:42 UTC | |
by Corion (Patriarch) on Aug 07, 2013 at 07:43 UTC | |
by fwingx (Novice) on Aug 07, 2013 at 07:52 UTC |