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

Function md_json_getl

modules/md/md_json.c:381–390  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

379/* longs */
380
381long md_json_getl(const md_json_t *json, ...)
382{
383 json_t *j;
384 va_list ap;
385
386 va_start(ap, json);
387 j = jselect(json, ap);
388 va_end(ap);
389 return (long)((j && json_is_number(j))? json_integer_value(j) : 0L);
390}
391
392apr_status_t md_json_setl(long value, md_json_t *json, ...)
393{

Callers 9

md_pkey_spec_from_jsonFunction · 0.85
si_val_statusFunction · 0.85
print_job_summaryFunction · 0.85
si_val_activityFunction · 0.85
md_domains_status_hookFunction · 0.85
md_ocsp_status_hookFunction · 0.85
md_job_from_jsonFunction · 0.85
md_from_jsonFunction · 0.85
md_result_from_jsonFunction · 0.85

Calls 1

jselectFunction · 0.85

Tested by

no test coverage detected