| 743 | static int ssl_stapling_index = -1; |
| 744 | |
| 745 | void |
| 746 | ssl_stapling_ex_init() |
| 747 | { |
| 748 | if (ssl_stapling_index != -1) { |
| 749 | return; |
| 750 | } |
| 751 | ssl_stapling_index = SSL_CTX_get_ex_new_index(0, nullptr, nullptr, nullptr, certinfo_map_free); |
| 752 | } |
| 753 | |
| 754 | static X509 * |
| 755 | stapling_get_issuer(SSL_CTX *ssl_ctx, X509 *x) |
no outgoing calls
no test coverage detected