| 195 | /* poll cert */ |
| 196 | |
| 197 | static void get_up_link(md_proto_driver_t *d, apr_table_t *headers) |
| 198 | { |
| 199 | md_acme_driver_t *ad = d->baton; |
| 200 | |
| 201 | ad->chain_up_link = md_link_find_relation(headers, d->p, "up"); |
| 202 | if (ad->chain_up_link) { |
| 203 | md_log_perror(MD_LOG_MARK, MD_LOG_DEBUG, 0, d->p, |
| 204 | "server reports up link as %s", ad->chain_up_link); |
| 205 | } |
| 206 | } |
| 207 | |
| 208 | static apr_status_t add_http_certs(apr_array_header_t *chain, apr_pool_t *p, |
| 209 | const md_http_response_t *res) |
no test coverage detected