Method: DS9::Option#set_max_send_header_block_length
- Defined in:
- ext/ds9/ds9_option.c
#set_max_send_header_block_length(size) ⇒ Object
85 86 87 88 89 90 91 92 93 |
# File 'ext/ds9/ds9_option.c', line 85 static VALUE option_set_max_send_header_block_length(VALUE self, VALUE size) { nghttp2_option *option; TypedData_Get_Struct(self, nghttp2_option, &ds9_option_type, option); nghttp2_option_set_max_send_header_block_length(option, NUM2INT(size)); return self; } |