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

Function md_job_make

modules/md/md_status.c:342–354  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

340/* drive job persistence */
341
342md_job_t *md_job_make(apr_pool_t *p, md_store_t *store,
343 md_store_group_t group, const char *name,
344 apr_time_t min_delay)
345{
346 md_job_t *job = apr_pcalloc(p, sizeof(*job));
347 job->group = group;
348 job->mdomain = apr_pstrdup(p, name);
349 job->store = store;
350 job->p = p;
351 job->max_log = 128;
352 job->min_delay = min_delay;
353 return job;
354}
355
356void md_job_set_group(md_job_t *job, md_store_group_t group)
357{

Callers 2

md_ocsp_job_makeFunction · 0.85
md_reg_job_makeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected