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

Function md_timeperiod_common

modules/md/md_time.c:315–325  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

313}
314
315md_timeperiod_t md_timeperiod_common(const md_timeperiod_t *a, const md_timeperiod_t *b)
316{
317 md_timeperiod_t c;
318
319 c.start = (a->start > b->start)? a->start : b->start;
320 c.end = (a->end < b->end)? a->end : b->end;
321 if (c.start > c.end) {
322 c.start = c.end = 0;
323 }
324 return c;
325}
326
327apr_time_t md_time_parse_rfc3339(const char *s)
328{

Callers 1

status_get_certs_jsonFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected