| 2755 | } |
| 2756 | |
| 2757 | void |
| 2758 | Http2ConnectionState::send_window_update_frame(Http2StreamId id, uint32_t size) |
| 2759 | { |
| 2760 | Http2StreamDebug(session, id, "Send WINDOW_UPDATE frame: size=%" PRIu32, size); |
| 2761 | |
| 2762 | // By specification, the window update increment must be greater than 0. |
| 2763 | ink_release_assert(size > 0); |
| 2764 | |
| 2765 | // Create WINDOW_UPDATE frame |
| 2766 | Http2WindowUpdateFrame window_update(id, size); |
| 2767 | this->session->xmit(window_update); |
| 2768 | } |
| 2769 | |
| 2770 | void |
| 2771 | Http2ConnectionState::increment_received_settings_count(uint32_t count) |