Home
last modified time | relevance | path

Searched refs:iv (Results 1 – 2 of 2) sorted by relevance

/curl/lib/
H A Dhttp2.c102 static size_t populate_settings(nghttp2_settings_entry *iv, in populate_settings() argument
108 iv[1].settings_id = NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE; in populate_settings()
109 iv[1].value = H2_STREAM_WINDOW_SIZE_INITIAL; in populate_settings()
111 iv[2].settings_id = NGHTTP2_SETTINGS_ENABLE_PUSH; in populate_settings()
112 iv[2].value = data->multi->push_cb != NULL; in populate_settings()
120 nghttp2_settings_entry iv[H2_SETTINGS_IV_LEN]; in populate_binsettings() local
123 ivlen = populate_settings(iv, data); in populate_binsettings()
126 iv, ivlen); in populate_binsettings()
588 nghttp2_settings_entry iv[H2_SETTINGS_IV_LEN]; in cf_h2_ctx_open() local
591 ivlen = populate_settings(iv, data); in cf_h2_ctx_open()
[all …]
H A Dcf-h2-proxy.c370 nghttp2_settings_entry iv[3]; in cf_h2_proxy_ctx_init() local
372 iv[0].settings_id = NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS; in cf_h2_proxy_ctx_init()
373 iv[0].value = Curl_multi_max_concurrent_streams(data->multi); in cf_h2_proxy_ctx_init()
374 iv[1].settings_id = NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE; in cf_h2_proxy_ctx_init()
375 iv[1].value = H2_TUNNEL_WINDOW_SIZE; in cf_h2_proxy_ctx_init()
376 iv[2].settings_id = NGHTTP2_SETTINGS_ENABLE_PUSH; in cf_h2_proxy_ctx_init()
377 iv[2].value = 0; in cf_h2_proxy_ctx_init()
378 rc = nghttp2_submit_settings(ctx->h2, NGHTTP2_FLAG_NONE, iv, 3); in cf_h2_proxy_ctx_init()

Completed in 14 milliseconds