| 811 | |
| 812 | |
| 813 | void initialize() |
| 814 | { |
| 815 | static Once* initialized = new Once(); |
| 816 | |
| 817 | if (initialized->once()) { |
| 818 | return; |
| 819 | } |
| 820 | |
| 821 | // We delegate to 'reinitialize()' so that tests can change the SSL |
| 822 | // configuration programatically. |
| 823 | reinitialize(); |
| 824 | |
| 825 | initialized->done(); |
| 826 | } |
| 827 | |
| 828 | |
| 829 | SSL_CTX* context() |
no test coverage detected