| 2903 | } |
| 2904 | |
| 2905 | bool |
| 2906 | Http2ConnectionState::_has_dynamic_stream_window() const |
| 2907 | { |
| 2908 | switch (this->_get_configured_flow_control_policy()) { |
| 2909 | case Http2FlowControlPolicy::STATIC_SESSION_AND_STATIC_STREAM: |
| 2910 | case Http2FlowControlPolicy::LARGE_SESSION_AND_STATIC_STREAM: |
| 2911 | return false; |
| 2912 | case Http2FlowControlPolicy::LARGE_SESSION_AND_DYNAMIC_STREAM: |
| 2913 | return true; |
| 2914 | } |
| 2915 | |
| 2916 | // This is unreachable, but adding a return here quiets a compiler warning. |
| 2917 | return false; |
| 2918 | } |
| 2919 | |
| 2920 | ssize_t |
| 2921 | Http2ConnectionState::get_peer_rwnd() const |
no test coverage detected