Lines Matching defs:lws_h2_netconn
251 struct lws_h2_netconn { struct
252 struct http2_settings our_set;
253 struct http2_settings peer_set;
254 struct hpack_dynamic_table hpack_dyn_table;
255 uint8_t ping_payload[8];
256 uint8_t one_setting[LWS_H2_SETTINGS_LEN];
257 char goaway_str[32]; /* for rx */
258 struct lws *swsi;
259 struct lws_h2_protocol_send *pps; /* linked list */
261 enum http2_hpack_state hpack;
262 enum http2_hpack_type hpack_type;
264 unsigned int huff:1;
265 unsigned int value:1;
266 unsigned int unknown_header:1;
267 unsigned int cont_exp:1;
268 unsigned int cont_exp_headers:1;
269 unsigned int we_told_goaway:1;
270 unsigned int pad_length:1;
271 unsigned int collected_priority:1;
272 unsigned int is_first_header_char:1;
273 unsigned int zero_huff_padding:1;
274 unsigned int last_action_dyntable_resize:1;
275 unsigned int sent_preface:1;
277 uint32_t hdr_idx;
278 uint32_t hpack_len;
279 uint32_t hpack_e_dep;
280 uint32_t count;
281 uint32_t preamble;
282 uint32_t length;
283 uint32_t sid;
284 uint32_t inside;
308 struct lws_h2_netconn *h2n; /* malloc'd for root net conn */ argument