Function libnghttp2_sys::nghttp2_option_set_no_auto_window_update [−][src]
pub unsafe extern "C" fn nghttp2_option_set_no_auto_window_update(
option: *mut nghttp2_option,
val: c_int
)
@function
This option prevents the library from sending WINDOW_UPDATE for a
connection automatically. If this option is set to nonzero, the
library won’t send WINDOW_UPDATE for DATA until application calls
nghttp2_session_consume()
to indicate the consumed amount of
data. Don’t use nghttp2_submit_window_update()
for this purpose.
By default, this option is set to zero.