| 371 | } |
| 372 | |
| 373 | bool |
| 374 | http2_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 | |
| 386 | ParseResult |
| 387 | http2_convert_header_from_2_to_1_1(HTTPHdr *headers) |
no test coverage detected