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

Function read_link

modules/http2/h2_proxy_util.c:869–882  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

867
868
869static int read_link(link_ctx *ctx)
870{
871 ctx->link_start = ctx->link_end = 0;
872 if (skip_ws(ctx) && read_chr(ctx, '<')) {
873 int end;
874 if (find_chr(ctx, '>', &end)) {
875 ctx->link_start = ctx->i;
876 ctx->link_end = end;
877 ctx->i = end + 1;
878 return 1;
879 }
880 }
881 return 0;
882}
883
884static int skip_pname(link_ctx *ctx)
885{

Callers 1

Calls 3

skip_wsFunction · 0.70
read_chrFunction · 0.70
find_chrFunction · 0.70

Tested by

no test coverage detected