• Home
  • Raw
  • Download

Lines Matching refs:option

39 void nghttp2_option_del(nghttp2_option *option) { free(option); }  in nghttp2_option_del()  argument
41 void nghttp2_option_set_no_auto_window_update(nghttp2_option *option, int val) { in nghttp2_option_set_no_auto_window_update() argument
42 option->opt_set_mask |= NGHTTP2_OPT_NO_AUTO_WINDOW_UPDATE; in nghttp2_option_set_no_auto_window_update()
43 option->no_auto_window_update = val; in nghttp2_option_set_no_auto_window_update()
46 void nghttp2_option_set_peer_max_concurrent_streams(nghttp2_option *option, in nghttp2_option_set_peer_max_concurrent_streams() argument
48 option->opt_set_mask |= NGHTTP2_OPT_PEER_MAX_CONCURRENT_STREAMS; in nghttp2_option_set_peer_max_concurrent_streams()
49 option->peer_max_concurrent_streams = val; in nghttp2_option_set_peer_max_concurrent_streams()
52 void nghttp2_option_set_no_recv_client_magic(nghttp2_option *option, int val) { in nghttp2_option_set_no_recv_client_magic() argument
53 option->opt_set_mask |= NGHTTP2_OPT_NO_RECV_CLIENT_MAGIC; in nghttp2_option_set_no_recv_client_magic()
54 option->no_recv_client_magic = val; in nghttp2_option_set_no_recv_client_magic()
57 void nghttp2_option_set_no_http_messaging(nghttp2_option *option, int val) { in nghttp2_option_set_no_http_messaging() argument
58 option->opt_set_mask |= NGHTTP2_OPT_NO_HTTP_MESSAGING; in nghttp2_option_set_no_http_messaging()
59 option->no_http_messaging = val; in nghttp2_option_set_no_http_messaging()
62 void nghttp2_option_set_max_reserved_remote_streams(nghttp2_option *option, in nghttp2_option_set_max_reserved_remote_streams() argument
64 option->opt_set_mask |= NGHTTP2_OPT_MAX_RESERVED_REMOTE_STREAMS; in nghttp2_option_set_max_reserved_remote_streams()
65 option->max_reserved_remote_streams = val; in nghttp2_option_set_max_reserved_remote_streams()
72 void nghttp2_option_set_user_recv_extension_type(nghttp2_option *option, in nghttp2_option_set_user_recv_extension_type() argument
78 option->opt_set_mask |= NGHTTP2_OPT_USER_RECV_EXT_TYPES; in nghttp2_option_set_user_recv_extension_type()
79 set_ext_type(option->user_recv_ext_types, type); in nghttp2_option_set_user_recv_extension_type()
82 void nghttp2_option_set_builtin_recv_extension_type(nghttp2_option *option, in nghttp2_option_set_builtin_recv_extension_type() argument
86 option->opt_set_mask |= NGHTTP2_OPT_BUILTIN_RECV_EXT_TYPES; in nghttp2_option_set_builtin_recv_extension_type()
87 option->builtin_recv_ext_types |= NGHTTP2_TYPEMASK_ALTSVC; in nghttp2_option_set_builtin_recv_extension_type()
90 option->opt_set_mask |= NGHTTP2_OPT_BUILTIN_RECV_EXT_TYPES; in nghttp2_option_set_builtin_recv_extension_type()
91 option->builtin_recv_ext_types |= NGHTTP2_TYPEMASK_ORIGIN; in nghttp2_option_set_builtin_recv_extension_type()
98 void nghttp2_option_set_no_auto_ping_ack(nghttp2_option *option, int val) { in nghttp2_option_set_no_auto_ping_ack() argument
99 option->opt_set_mask |= NGHTTP2_OPT_NO_AUTO_PING_ACK; in nghttp2_option_set_no_auto_ping_ack()
100 option->no_auto_ping_ack = val; in nghttp2_option_set_no_auto_ping_ack()
103 void nghttp2_option_set_max_send_header_block_length(nghttp2_option *option, in nghttp2_option_set_max_send_header_block_length() argument
105 option->opt_set_mask |= NGHTTP2_OPT_MAX_SEND_HEADER_BLOCK_LENGTH; in nghttp2_option_set_max_send_header_block_length()
106 option->max_send_header_block_length = val; in nghttp2_option_set_max_send_header_block_length()
109 void nghttp2_option_set_max_deflate_dynamic_table_size(nghttp2_option *option, in nghttp2_option_set_max_deflate_dynamic_table_size() argument
111 option->opt_set_mask |= NGHTTP2_OPT_MAX_DEFLATE_DYNAMIC_TABLE_SIZE; in nghttp2_option_set_max_deflate_dynamic_table_size()
112 option->max_deflate_dynamic_table_size = val; in nghttp2_option_set_max_deflate_dynamic_table_size()
115 void nghttp2_option_set_no_closed_streams(nghttp2_option *option, int val) { in nghttp2_option_set_no_closed_streams() argument
116 option->opt_set_mask |= NGHTTP2_OPT_NO_CLOSED_STREAMS; in nghttp2_option_set_no_closed_streams()
117 option->no_closed_streams = val; in nghttp2_option_set_no_closed_streams()
120 void nghttp2_option_set_max_outbound_ack(nghttp2_option *option, size_t val) { in nghttp2_option_set_max_outbound_ack() argument
121 option->opt_set_mask |= NGHTTP2_OPT_MAX_OUTBOUND_ACK; in nghttp2_option_set_max_outbound_ack()
122 option->max_outbound_ack = val; in nghttp2_option_set_max_outbound_ack()
125 void nghttp2_option_set_max_settings(nghttp2_option *option, size_t val) { in nghttp2_option_set_max_settings() argument
126 option->opt_set_mask |= NGHTTP2_OPT_MAX_SETTINGS; in nghttp2_option_set_max_settings()
127 option->max_settings = val; in nghttp2_option_set_max_settings()