perchits
Results
2
comments of
perchits
As a temporary workaround I have changed `SSLAdaptor::ssl_socket_` from unique_ptr to to shared_ptr and defined move constructor for SSLAdaptor like this: ``` SSLAdaptor(SSLAdaptor&& other) : ssl_socket_(other.ssl_socket_) { } ``` So...
You are welcome. You should also keep in mind that Crow has many problems in other aspects, one of them is lack of decent multi-threading support. Unfortunately this project seems...