| 1255 | } |
| 1256 | |
| 1257 | const char *md_json_dump_state(const md_json_t *json, apr_pool_t *p) |
| 1258 | { |
| 1259 | if (!json) return "NULL"; |
| 1260 | return apr_psprintf(p, "%s, refc=%ld", md_json_type_name(json), (long)json->j->refcount); |
| 1261 | } |
| 1262 | |
| 1263 | apr_status_t md_json_set_timeperiod(const md_timeperiod_t *tp, md_json_t *json, ...) |
| 1264 | { |
no test coverage detected