| 764 | |
| 765 | |
| 766 | void initialize() |
| 767 | { |
| 768 | static Once* initialized = new Once(); |
| 769 | |
| 770 | if (initialized->once()) { |
| 771 | return; |
| 772 | } |
| 773 | |
| 774 | // We delegate to 'reinitialize()' so that tests can change the SSL |
| 775 | // configuration programatically. |
| 776 | reinitialize(); |
| 777 | |
| 778 | initialized->done(); |
| 779 | } |
| 780 | |
| 781 | |
| 782 | SSL_CTX* context() |
no test coverage detected