| 1211 | } resp_data; |
| 1212 | |
| 1213 | static apr_status_t json_resp_cb(const md_http_response_t *res, void *data) |
| 1214 | { |
| 1215 | resp_data *resp = data; |
| 1216 | return md_json_read_http(&resp->json, resp->pool, res); |
| 1217 | } |
| 1218 | |
| 1219 | apr_status_t md_json_http_get(md_json_t **pjson, apr_pool_t *pool, |
| 1220 | struct md_http_t *http, const char *url) |
nothing calls this directly
no test coverage detected