| 239 | } |
| 240 | |
| 241 | cc_result SSL_Free(void* ctx_) { |
| 242 | SSLContext* ctx = (SSLContext*)ctx_; |
| 243 | if (ctx) br_sslio_close(&ctx->ioc); |
| 244 | |
| 245 | Mem_Free(ctx_); |
| 246 | return 0; |
| 247 | } |
| 248 | #else |
| 249 | void SSLBackend_Init(cc_bool verifyCerts) { } |
| 250 | cc_bool SSLBackend_DescribeError(cc_result res, cc_string* dst) { return false; } |
no test coverage detected