27 Sep
2019
27 Sep
'19
1:44 a.m.
On Wed, Sep 25, 2019 at 11:53 PM Martijn Otto via Boost-users
If what I am doing is indeed not correct, I will need to use a shared_ptr so the handshakes can complete with the old context. Since this introduces overhead I'd like to do this only if really necessary.
If you are using SSL then you should not be concerned about the overhead of using shared_ptr, it is not statistically significant compared to the kernel I/O and SSL operations. Regards