| 34 | // -- constructors, destructors, and assignment operators ---------------------- |
| 35 | |
| 36 | context::context(context&& other) { |
| 37 | pimpl_ = other.pimpl_; |
| 38 | other.pimpl_ = nullptr; |
| 39 | data_ = other.data_; |
| 40 | other.data_ = nullptr; |
| 41 | } |
| 42 | |
| 43 | context& context::operator=(context&& other) { |
| 44 | SSL_CTX_free(native(pimpl_)); |
no outgoing calls
no test coverage detected