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

Function http2_parse_window_update

src/proxy/http2/HTTP2.cc:373–384  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

371}
372
373bool
374http2_parse_window_update(IOVec iov, uint32_t &size)
375{
376 byte_pointer ptr(iov.iov_base);
377 byte_addressable_value<uint32_t> s;
378
379 memcpy_and_advance(s.bytes, ptr);
380
381 size = ntohl(s.value);
382
383 return true;
384}
385
386ParseResult
387http2_convert_header_from_2_to_1_1(HTTPHdr *headers)

Callers 1

Calls 1

memcpy_and_advanceFunction · 0.85

Tested by

no test coverage detected