| 175 | } |
| 176 | |
| 177 | md_t *md_get_by_dns_overlap(struct apr_array_header_t *mds, const md_t *md) |
| 178 | { |
| 179 | int i; |
| 180 | for (i = 0; i < mds->nelts; ++i) { |
| 181 | md_t *o = APR_ARRAY_IDX(mds, i, md_t *); |
| 182 | if (strcmp(o->name, md->name) && md_common_name(o, md)) { |
| 183 | return o; |
| 184 | } |
| 185 | } |
| 186 | return NULL; |
| 187 | } |
| 188 | |
| 189 | int md_cert_count(const md_t *md) |
| 190 | { |
nothing calls this directly
no test coverage detected