• 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()
94 option->opt_set_mask |= NGHTTP2_OPT_BUILTIN_RECV_EXT_TYPES; in nghttp2_option_set_builtin_recv_extension_type()
95 option->builtin_recv_ext_types |= NGHTTP2_TYPEMASK_PRIORITY_UPDATE; in nghttp2_option_set_builtin_recv_extension_type()
102 void nghttp2_option_set_no_auto_ping_ack(nghttp2_option *option, int val) { in nghttp2_option_set_no_auto_ping_ack() argument
103 option->opt_set_mask |= NGHTTP2_OPT_NO_AUTO_PING_ACK; in nghttp2_option_set_no_auto_ping_ack()
104 option->no_auto_ping_ack = val; in nghttp2_option_set_no_auto_ping_ack()
107 void nghttp2_option_set_max_send_header_block_length(nghttp2_option *option, in nghttp2_option_set_max_send_header_block_length() argument
109 option->opt_set_mask |= NGHTTP2_OPT_MAX_SEND_HEADER_BLOCK_LENGTH; in nghttp2_option_set_max_send_header_block_length()
110 option->max_send_header_block_length = val; in nghttp2_option_set_max_send_header_block_length()
113 void nghttp2_option_set_max_deflate_dynamic_table_size(nghttp2_option *option, in nghttp2_option_set_max_deflate_dynamic_table_size() argument
115 option->opt_set_mask |= NGHTTP2_OPT_MAX_DEFLATE_DYNAMIC_TABLE_SIZE; in nghttp2_option_set_max_deflate_dynamic_table_size()
116 option->max_deflate_dynamic_table_size = val; in nghttp2_option_set_max_deflate_dynamic_table_size()
119 void nghttp2_option_set_no_closed_streams(nghttp2_option *option, int val) { in nghttp2_option_set_no_closed_streams() argument
120 option->opt_set_mask |= NGHTTP2_OPT_NO_CLOSED_STREAMS; in nghttp2_option_set_no_closed_streams()
121 option->no_closed_streams = val; in nghttp2_option_set_no_closed_streams()
124 void nghttp2_option_set_max_outbound_ack(nghttp2_option *option, size_t val) { in nghttp2_option_set_max_outbound_ack() argument
125 option->opt_set_mask |= NGHTTP2_OPT_MAX_OUTBOUND_ACK; in nghttp2_option_set_max_outbound_ack()
126 option->max_outbound_ack = val; in nghttp2_option_set_max_outbound_ack()
129 void nghttp2_option_set_max_settings(nghttp2_option *option, size_t val) { in nghttp2_option_set_max_settings() argument
130 option->opt_set_mask |= NGHTTP2_OPT_MAX_SETTINGS; in nghttp2_option_set_max_settings()
131 option->max_settings = val; in nghttp2_option_set_max_settings()
134 void nghttp2_option_set_stream_reset_rate_limit(nghttp2_option *option, in nghttp2_option_set_stream_reset_rate_limit() argument
136 option->opt_set_mask |= NGHTTP2_OPT_STREAM_RESET_RATE_LIMIT; in nghttp2_option_set_stream_reset_rate_limit()
137 option->stream_reset_burst = burst; in nghttp2_option_set_stream_reset_rate_limit()
138 option->stream_reset_rate = rate; in nghttp2_option_set_stream_reset_rate_limit()
142 nghttp2_option *option, int val) { in nghttp2_option_set_server_fallback_rfc7540_priorities() argument
143 option->opt_set_mask |= NGHTTP2_OPT_SERVER_FALLBACK_RFC7540_PRIORITIES; in nghttp2_option_set_server_fallback_rfc7540_priorities()
144 option->server_fallback_rfc7540_priorities = val; in nghttp2_option_set_server_fallback_rfc7540_priorities()
148 nghttp2_option *option, int val) { in nghttp2_option_set_no_rfc9113_leading_and_trailing_ws_validation() argument
149 option->opt_set_mask |= in nghttp2_option_set_no_rfc9113_leading_and_trailing_ws_validation()
151 option->no_rfc9113_leading_and_trailing_ws_validation = val; in nghttp2_option_set_no_rfc9113_leading_and_trailing_ws_validation()
154 void nghttp2_option_set_max_continuations(nghttp2_option *option, size_t val) { in nghttp2_option_set_max_continuations() argument
155 option->opt_set_mask |= NGHTTP2_OPT_MAX_CONTINUATIONS; in nghttp2_option_set_max_continuations()
156 option->max_continuations = val; in nghttp2_option_set_max_continuations()