| 361 | } |
| 362 | |
| 363 | int H2Context::Init() { |
| 364 | if (_pending_streams.init(64, 70) != 0) { |
| 365 | LOG(WARNING) << "Fail to init _pending_streams"; |
| 366 | } |
| 367 | if (_hpacker.Init(_unack_local_settings.header_table_size) != 0) { |
| 368 | LOG(WARNING) << "Fail to init _hpacker"; |
| 369 | } |
| 370 | return 0; |
| 371 | } |
| 372 | |
| 373 | H2StreamContext* H2Context::RemoveStreamAndDeferWU(int stream_id) { |
| 374 | H2StreamContext* sctx = NULL; |
no test coverage detected