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

Function md_json_dups

modules/md/md_json.c:418–428  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

416}
417
418const char *md_json_dups(apr_pool_t *p, const md_json_t *json, ...)
419{
420 json_t *j;
421 va_list ap;
422
423 va_start(ap, json);
424 j = jselect(json, ap);
425 va_end(ap);
426
427 return (j && json_is_string(j))? apr_pstrdup(p, json_string_value(j)) : NULL;
428}
429
430apr_status_t md_json_sets(const char *value, md_json_t *json, ...)
431{

Callers 10

ostat_from_jsonFunction · 0.85
read_store_fileFunction · 0.85
acct_updFunction · 0.85
md_job_from_jsonFunction · 0.85
order_update_from_jsonFunction · 0.85
md_from_jsonFunction · 0.85
copy_challenge_errorFunction · 0.85
cha_from_jsonFunction · 0.85
md_result_from_jsonFunction · 0.85
update_directoryFunction · 0.85

Calls 1

jselectFunction · 0.85

Tested by

no test coverage detected