| 18 | constexpr size_t REPORT_PROGRESS_EVERY_BYTES = 15360; // arbitrary |
| 19 | |
| 20 | void LoadSystemCertsOnWindows(SSL_CTX* ctx) |
| 21 | { |
| 22 | X509_STORE* store = X509_STORE_new(); |
| 23 | httplib::detail::load_system_certs_on_windows(store); |
| 24 | SSL_CTX_set_cert_store(ctx, store); |
| 25 | } |
| 26 | |
| 27 | extern HWND g_Hwnd; |
| 28 |
no test coverage detected