MCPcopy Create free account
hub / github.com/apache/trafficserver / engine_async

Function engine_async

contrib/openssl/async_engine.c:125–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

123#endif
124
125static ENGINE *
126engine_async(void)
127{
128 ENGINE *ret = ENGINE_new();
129 if (!ret)
130 return NULL;
131 if (!bind_async(ret)) {
132 ENGINE_free(ret);
133 return NULL;
134 }
135 return ret;
136}
137
138void
139engine_load_async_int(void)

Callers 1

engine_load_async_intFunction · 0.70

Calls 1

bind_asyncFunction · 0.70

Tested by

no test coverage detected