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

Function p_remove

modules/md/md_store.c:227–239  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

225}
226
227static apr_status_t p_remove(void *baton, apr_pool_t *p, apr_pool_t *ptemp, va_list ap)
228{
229 md_group_ctx *ctx = baton;
230 const char *name;
231 int force;
232
233 (void)p;
234 name = va_arg(ap, const char *);
235 force = va_arg(ap, int);
236
237 assert(name);
238 return md_store_remove(ctx->store, ctx->group, name, MD_FN_MD, ptemp, force);
239}
240
241apr_status_t md_remove(md_store_t *store, apr_pool_t *p,
242 md_store_group_t group, const char *name, int force)

Callers

nothing calls this directly

Calls 1

md_store_removeFunction · 0.85

Tested by

no test coverage detected