| 174 | } |
| 175 | |
| 176 | void 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 | ** |
no test coverage detected