MCPcopy Create free account
hub / github.com/apache/httpd / ssl_scache_remove

Function ssl_scache_remove

modules/ssl/ssl_scache.c:176–190  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

174}
175
176void ssl_scache_remove(server_rec *s, IDCONST UCHAR *id, int idlen,
177 apr_pool_t *p)
178{
179 SSLModConfigRec *mc = myModConfig(s);
180
181 if (mc->sesscache->flags & AP_SOCACHE_FLAG_NOTMPSAFE) {
182 ssl_mutex_on(s);
183 }
184
185 mc->sesscache->remove(mc->sesscache_context, s, id, idlen, p);
186
187 if (mc->sesscache->flags & AP_SOCACHE_FLAG_NOTMPSAFE) {
188 ssl_mutex_off(s);
189 }
190}
191
192/* _________________________________________________________________
193**

Callers 1

Calls 2

ssl_mutex_onFunction · 0.85
ssl_mutex_offFunction · 0.85

Tested by

no test coverage detected