MCPcopy Create free account
hub / github.com/3rdparty/libprocess / initialize

Function initialize

src/openssl.cpp:766–779  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

764
765
766void 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
782SSL_CTX* context()

Callers 1

openssl.cppFile · 0.70

Calls 3

onceMethod · 0.80
doneMethod · 0.80
reinitializeFunction · 0.70

Tested by

no test coverage detected