| 970 | } |
| 971 | |
| 972 | apr_status_t md_json_writeb(const md_json_t *json, md_json_fmt_t fmt, apr_bucket_brigade *bb) |
| 973 | { |
| 974 | int rv = json_dump_callback(json->j, dump_cb, bb, fmt_to_flags(fmt)); |
| 975 | return rv? APR_EGENERAL : APR_SUCCESS; |
| 976 | } |
| 977 | |
| 978 | static int chunk_cb(const char *buffer, size_t len, void *baton) |
| 979 | { |
no test coverage detected