| 581 | } |
| 582 | |
| 583 | static apr_status_t job_result_raise(md_result_t *result, void *data, const char *event, apr_pool_t *p) |
| 584 | { |
| 585 | md_job_result_ctx *ctx = data; |
| 586 | (void)p; |
| 587 | if (result == ctx->job->observing) { |
| 588 | return md_job_notify(ctx->job, event, result); |
| 589 | } |
| 590 | return APR_SUCCESS; |
| 591 | } |
| 592 | |
| 593 | static void job_result_holler(md_result_t *result, void *data, const char *event, apr_pool_t *p) |
| 594 | { |
nothing calls this directly
no test coverage detected