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

Function md_result_printf

modules/md/md_result.c:126–136  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

124}
125
126void md_result_printf(md_result_t *result, apr_status_t status, const char *fmt, ...)
127{
128 va_list ap;
129
130 result->status = status;
131 va_start(ap, fmt);
132 result->detail = apr_pvsprintf(result->p, fmt, ap);
133 va_end(ap);
134 result->subproblems = NULL;
135 on_change(result);
136}
137
138void md_result_delay_set(md_result_t *result, apr_time_t ready_at)
139{

Callers 15

ostat_on_respFunction · 0.85
ostat_on_req_statusFunction · 0.85
process_drive_jobFunction · 0.85
check_challengesFunction · 0.85
md_acme_authz_respondFunction · 0.85
run_initFunction · 0.85
md_acme_drive_set_acctFunction · 0.85
acme_driver_initFunction · 0.85
acme_renewFunction · 0.85
acme_preloadFunction · 0.85
inspect_problemFunction · 0.85

Calls 1

on_changeFunction · 0.85

Tested by

no test coverage detected