| 76 | } |
| 77 | |
| 78 | void md_event_holler(const char *event, |
| 79 | const char *mdomain, |
| 80 | struct md_job_t *job, |
| 81 | struct md_result_t *result, |
| 82 | apr_pool_t *p) |
| 83 | { |
| 84 | md_subscription *sub = EVNT.subs; |
| 85 | while (sub) { |
| 86 | sub->cb(event, mdomain, sub->baton, job, result, p); |
| 87 | sub = sub->next; |
| 88 | } |
| 89 | } |
no outgoing calls
no test coverage detected