MCPcopy Create free account
hub / github.com/apache/trafficserver / send_window_update_frame

Method send_window_update_frame

src/proxy/http2/Http2ConnectionState.cc:2757–2768  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

2755}
2756
2757void
2758Http2ConnectionState::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
2770void
2771Http2ConnectionState::increment_received_settings_count(uint32_t count)

Callers 1

restart_receivingMethod · 0.95

Calls 1

xmitMethod · 0.80

Tested by

no test coverage detected