MCPcopy Create free account
hub / github.com/apache/mesos / initialize

Function initialize

3rdparty/libprocess/src/openssl.cpp:813–826  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

811
812
813void 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
829SSL_CTX* context()

Callers 1

openssl.cppFile · 0.70

Calls 3

onceMethod · 0.80
reinitializeFunction · 0.70
doneMethod · 0.45

Tested by

no test coverage detected