| 130 | } |
| 131 | |
| 132 | void destroySSL() |
| 133 | { |
| 134 | if (mOpenSSLCTX != nullptr) |
| 135 | { |
| 136 | SSL_CTX_free(mOpenSSLCTX); |
| 137 | mOpenSSLCTX = nullptr; |
| 138 | } |
| 139 | } |
| 140 | |
| 141 | SSL_CTX* getOpenSSLCTX() |
| 142 | { |
nothing calls this directly
no outgoing calls
no test coverage detected