| 323 | } |
| 324 | |
| 325 | bool |
| 326 | http2_parse_rst_stream(IOVec iov, Http2RstStream &rst_stream) |
| 327 | { |
| 328 | byte_pointer ptr(iov.iov_base); |
| 329 | byte_addressable_value<uint32_t> ec; |
| 330 | |
| 331 | memcpy_and_advance(ec.bytes, ptr); |
| 332 | |
| 333 | rst_stream.error_code = ntohl(ec.value); |
| 334 | |
| 335 | return true; |
| 336 | } |
| 337 | |
| 338 | bool |
| 339 | http2_parse_settings_parameter(IOVec iov, Http2SettingsParameter ¶m) |
no test coverage detected