Lines Matching refs:entry
1709 std::array<nghttp2_settings_entry, 5> entry;
1711 entry[0].settings_id = NGHTTP2_SETTINGS_MAX_CONCURRENT_STREAMS;
1712 entry[0].value = http2conf.downstream.max_concurrent_streams;
1714 entry[1].settings_id = NGHTTP2_SETTINGS_INITIAL_WINDOW_SIZE;
1715 entry[1].value = http2conf.downstream.window_size;
1717 entry[2].settings_id = NGHTTP2_SETTINGS_NO_RFC7540_PRIORITIES;
1718 entry[2].value = 1;
1721 entry[nentry].settings_id = NGHTTP2_SETTINGS_ENABLE_PUSH;
1722 entry[nentry].value = 0;
1728 entry[nentry].settings_id = NGHTTP2_SETTINGS_HEADER_TABLE_SIZE;
1729 entry[nentry].value = http2conf.downstream.decoder_dynamic_table_size;
1733 rv = nghttp2_submit_settings(session_, NGHTTP2_FLAG_NONE, entry.data(),