MCPcopy Create free account
hub / github.com/apache/httpd / md_link_find_relation

Function md_link_find_relation

modules/md/md_util.c:1533–1545  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1531}
1532
1533const 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
1547const char *md_util_parse_ct(apr_pool_t *pool, const char *cth)
1548{

Callers 1

get_up_linkFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected