MCPcopy Create free account
hub / github.com/actor-framework/actor-framework / context

Method context

libcaf_net/caf/net/ssl/context.cpp:36–41  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

34// -- constructors, destructors, and assignment operators ----------------------
35
36context::context(context&& other) {
37 pimpl_ = other.pimpl_;
38 other.pimpl_ = nullptr;
39 data_ = other.data_;
40 other.data_ = nullptr;
41}
42
43context& context::operator=(context&& other) {
44 SSL_CTX_free(native(pimpl_));

Callers 13

caf_mainFunction · 0.45
caf_mainFunction · 0.45
caf_mainFunction · 0.45
caf_mainFunction · 0.45
caf_mainFunction · 0.45
caf_mainFunction · 0.45
caf_mainFunction · 0.45
caf_mainFunction · 0.45
caf_mainFunction · 0.45
launch_prom_serverFunction · 0.45
~prometheus_scrapingMethod · 0.45
stopMethod · 0.45

Calls

no outgoing calls

Tested by

no test coverage detected