| 1188 | |
| 1189 | #if defined(BRPC_H2_STREAM_STATE) |
| 1190 | void H2StreamContext::SetState(H2StreamState state) { |
| 1191 | const H2StreamState old_state = _state; |
| 1192 | _state = state; |
| 1193 | RPC_VLOG << "stream_id=" << stream_id() << " changed from " |
| 1194 | << H2StreamState2Str(old_state) << " to " |
| 1195 | << H2StreamState2Str(state); |
| 1196 | } |
| 1197 | #endif |
| 1198 | |
| 1199 | bool H2StreamContext::ConsumeWindowSize(int64_t size) { |
nothing calls this directly
no test coverage detected