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

Function reg_md_iter

modules/md/md_reg.c:309–319  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

307} reg_do_ctx;
308
309static int reg_md_iter(void *baton, md_store_t *store, md_t *md, apr_pool_t *ptemp)
310{
311 reg_do_ctx *ctx = baton;
312
313 (void)store;
314 if (!ctx->exclude || strcmp(ctx->exclude, md->name)) {
315 state_init(ctx->reg, ptemp, (md_t*)md);
316 return ctx->cb(ctx->baton, ctx->reg, md);
317 }
318 return 1;
319}
320
321static int reg_do(md_reg_do_cb *cb, void *baton, md_reg_t *reg, apr_pool_t *p, const char *exclude)
322{

Callers

nothing calls this directly

Calls 1

state_initFunction · 0.85

Tested by

no test coverage detected