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

Function md_json_set_time

modules/md/md_json.c:457–468  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

455}
456
457apr_status_t md_json_set_time(apr_time_t value, md_json_t *json, ...)
458{
459 char ts[APR_RFC822_DATE_LEN];
460 va_list ap;
461 apr_status_t rv;
462
463 apr_rfc822_date(ts, value);
464 va_start(ap, json);
465 rv = jselect_set_new(json_string(ts), json, ap);
466 va_end(ap);
467 return rv;
468}
469
470/**************************************************************************************************/
471/* json itself */

Callers 2

mk_jstatFunction · 0.85
status_get_md_jsonFunction · 0.85

Calls 1

jselect_set_newFunction · 0.85

Tested by

no test coverage detected