MCPcopy Create free account
hub / github.com/apache/trafficserver / http_skip_ws

Function http_skip_ws

src/proxy/hdrs/HTTP.cc:1587–1594  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1585 -------------------------------------------------------------------------*/
1586
1587static void
1588http_skip_ws(const char *&buf, int &len)
1589{
1590 while (len > 0 && *buf && ParseRules::is_ws(*buf)) {
1591 buf += 1;
1592 len -= 1;
1593 }
1594}
1595
1596/*-------------------------------------------------------------------------
1597 -------------------------------------------------------------------------*/

Callers 2

http_parse_qvalueFunction · 0.85
http_parse_teFunction · 0.85

Calls 1

is_wsFunction · 0.85

Tested by

no test coverage detected