| 1531 | } |
| 1532 | |
| 1533 | const char *md_link_find_relation(const apr_table_t *headers, |
| 1534 | apr_pool_t *pool, const char *relation) |
| 1535 | { |
| 1536 | find_ctx ctx; |
| 1537 | |
| 1538 | memset(&ctx, 0, sizeof(ctx)); |
| 1539 | ctx.pool = pool; |
| 1540 | ctx.relation = relation; |
| 1541 | |
| 1542 | apr_table_do(find_url, &ctx, headers, NULL); |
| 1543 | |
| 1544 | return ctx.url; |
| 1545 | } |
| 1546 | |
| 1547 | const char *md_util_parse_ct(apr_pool_t *pool, const char *cth) |
| 1548 | { |