/third_party/nghttp2/src/ |
H A D | shrpx_http2_session.cc | 962 auto promised_stream_id = frame->push_promise.promised_stream_id; in on_header_callback2() local 964 nghttp2_session_get_stream_user_data(session, promised_stream_id)); in on_header_callback2() 966 http2session->submit_rst_stream(promised_stream_id, NGHTTP2_CANCEL); in on_header_callback2() 1024 stream_id = frame->push_promise.promised_stream_id; in on_invalid_header_callback2() 1067 auto promised_stream_id = frame->push_promise.promised_stream_id; in on_begin_headers_callback() local 1071 http2session->submit_rst_stream(promised_stream_id, NGHTTP2_CANCEL); in on_begin_headers_callback() 1081 promised_stream_id) != 0) { in on_begin_headers_callback() 1082 http2session->submit_rst_stream(promised_stream_id, NGHTTP2_CANCE in on_begin_headers_callback() 1346 auto promised_stream_id = frame->push_promise.promised_stream_id; on_frame_recv_callback() local 2216 handle_downstream_push_promise(Downstream *downstream, int32_t promised_stream_id) handle_downstream_push_promise() argument [all...] |
H A D | shrpx_http2_upstream.cc | 708 auto promised_stream_id = frame->push_promise.promised_stream_id; in on_frame_send_callback() local 710 if (nghttp2_session_get_stream_user_data(session, promised_stream_id)) { in on_frame_send_callback() 717 upstream, handler->get_mcpool(), promised_stream_id); in on_frame_send_callback() 724 nghttp2_session_set_stream_user_data(session, promised_stream_id, in on_frame_send_callback() 2221 auto promised_stream_id = nghttp2_submit_push_promise( in submit_push_promise() local 2225 if (promised_stream_id < 0) { in submit_push_promise() 2228 << nghttp2_strerror(promised_stream_id); in submit_push_promise() 2230 if (nghttp2_is_fatal(promised_stream_id)) { in submit_push_promise() 2242 ULOG(INFO, this) << "HTTP push request headers. promised_stream_id in submit_push_promise() 2323 on_downstream_push_promise(Downstream *downstream, int32_t promised_stream_id) on_downstream_push_promise() argument 2363 auto promised_stream_id = nghttp2_submit_push_promise( on_downstream_push_promise_complete() local [all...] |
H A D | shrpx_upstream.h | 89 // stream ID is given as |promised_stream_id|. If upstream supports 95 int32_t promised_stream_id) = 0;
|
H A D | HttpServer.cc | 1030 auto promised_stream_id = nghttp2_submit_push_promise( in submit_push_promise() local 1034 if (promised_stream_id < 0) { in submit_push_promise() 1035 return promised_stream_id; in submit_push_promise() 1038 auto promised_stream = std::make_unique<Stream>(this, promised_stream_id); in submit_push_promise() 1047 add_stream(promised_stream_id, std::move(promised_stream)); in submit_push_promise() 1623 auto promised_stream_id = frame->push_promise.promised_stream_id; in hd_on_frame_send_callback() local 1624 auto promised_stream = hd->get_stream(promised_stream_id); in hd_on_frame_send_callback()
|
H A D | shrpx_http2_upstream.h | 92 int32_t promised_stream_id);
|
H A D | shrpx_https_upstream.h | 87 int32_t promised_stream_id);
|
H A D | shrpx_http2_session.h | 199 int32_t promised_stream_id);
|
H A D | shrpx_http3_upstream.h | 83 int32_t promised_stream_id);
|
H A D | nghttp.cc | 1877 auto stream_id = frame->push_promise.promised_stream_id; in on_begin_headers_callback() 1942 session, frame->push_promise.promised_stream_id)); in on_header_callback() 1950 frame->push_promise.promised_stream_id, in on_header_callback() 2040 session, frame->push_promise.promised_stream_id)); in on_frame_recv_callback2() 2060 frame->push_promise.promised_stream_id, in on_frame_recv_callback2() 2071 frame->push_promise.promised_stream_id, in on_frame_recv_callback2() 2080 frame->push_promise.promised_stream_id, in on_frame_recv_callback2()
|
H A D | app_helper.cc | 327 fprintf(outfile, "(padlen=%zu, promised_stream_id=%d)\n", in print_frame() 328 frame->push_promise.padlen, frame->push_promise.promised_stream_id); in print_frame()
|
H A D | shrpx_https_upstream.cc | 1568 int32_t promised_stream_id) { in on_downstream_push_promise() 1567 on_downstream_push_promise(Downstream *downstream, int32_t promised_stream_id) on_downstream_push_promise() argument
|
/third_party/nghttp2/lib/ |
H A D | nghttp2_submit.c | 323 int32_t promised_stream_id; in nghttp2_submit_push_promise() local 362 promised_stream_id = (int32_t)session->next_stream_id; in nghttp2_submit_push_promise() 366 promised_stream_id, nva_copy, nvlen); in nghttp2_submit_push_promise() 377 return promised_stream_id; in nghttp2_submit_push_promise()
|
H A D | nghttp2_frame.c | 115 int32_t promised_stream_id, in nghttp2_frame_push_promise_init() 121 frame->promised_stream_id = promised_stream_id; in nghttp2_frame_push_promise_init() 581 nghttp2_put_uint32be(buf->pos, (uint32_t)frame->promised_stream_id); in nghttp2_frame_pack_push_promise() 591 frame->promised_stream_id = in nghttp2_frame_unpack_push_promise_payload() 113 nghttp2_frame_push_promise_init(nghttp2_push_promise *frame, uint8_t flags, int32_t stream_id, int32_t promised_stream_id, nghttp2_nv *nva, size_t nvlen) nghttp2_frame_push_promise_init() argument
|
H A D | nghttp2_frame.h | 456 int32_t promised_stream_id,
|
H A D | nghttp2_session.c | 1181 session, frame->push_promise.promised_stream_id, in nghttp2_session_add_item() 2551 frame->push_promise.promised_stream_id); in session_prep_frame() 2552 session->last_sent_stream_id = frame->push_promise.promised_stream_id; in session_prep_frame() 3292 opened_stream_id = item->frame.push_promise.promised_stream_id; in nghttp2_session_mem_send_internal() 3366 opened_stream_id = item->frame.push_promise.promised_stream_id; in nghttp2_session_mem_send_internal() 3891 session, frame->push_promise.promised_stream_id); in inflate_header_block() 4076 session, frame->push_promise.promised_stream_id); in session_after_header_block_received() 4109 stream_id = frame->push_promise.promised_stream_id; in session_after_header_block_received() 4995 frame->push_promise.promised_stream_id)) { in nghttp2_session_on_push_promise_received() 5001 "PUSH_PROMISE: invalid promised_stream_id"); in nghttp2_session_on_push_promise_received() [all...] |
/third_party/node/deps/nghttp2/lib/ |
H A D | nghttp2_submit.c | 323 int32_t promised_stream_id; in nghttp2_submit_push_promise() local 362 promised_stream_id = (int32_t)session->next_stream_id; in nghttp2_submit_push_promise() 366 promised_stream_id, nva_copy, nvlen); in nghttp2_submit_push_promise() 377 return promised_stream_id; in nghttp2_submit_push_promise()
|
H A D | nghttp2_frame.c | 115 int32_t promised_stream_id, in nghttp2_frame_push_promise_init() 121 frame->promised_stream_id = promised_stream_id; in nghttp2_frame_push_promise_init() 581 nghttp2_put_uint32be(buf->pos, (uint32_t)frame->promised_stream_id); in nghttp2_frame_pack_push_promise() 591 frame->promised_stream_id = in nghttp2_frame_unpack_push_promise_payload() 113 nghttp2_frame_push_promise_init(nghttp2_push_promise *frame, uint8_t flags, int32_t stream_id, int32_t promised_stream_id, nghttp2_nv *nva, size_t nvlen) nghttp2_frame_push_promise_init() argument
|
H A D | nghttp2_frame.h | 456 int32_t promised_stream_id,
|
H A D | nghttp2_session.c | 1176 session, frame->push_promise.promised_stream_id, in nghttp2_session_add_item() 2546 frame->push_promise.promised_stream_id); in session_prep_frame() 2547 session->last_sent_stream_id = frame->push_promise.promised_stream_id; in session_prep_frame() 3287 opened_stream_id = item->frame.push_promise.promised_stream_id; in nghttp2_session_mem_send_internal() 3361 opened_stream_id = item->frame.push_promise.promised_stream_id; in nghttp2_session_mem_send_internal() 3886 session, frame->push_promise.promised_stream_id); in inflate_header_block() 4071 session, frame->push_promise.promised_stream_id); in session_after_header_block_received() 4104 stream_id = frame->push_promise.promised_stream_id; in session_after_header_block_received() 4990 frame->push_promise.promised_stream_id)) { in nghttp2_session_on_push_promise_received() 4996 "PUSH_PROMISE: invalid promised_stream_id"); in nghttp2_session_on_push_promise_received() [all...] |
/third_party/nghttp2/tests/ |
H A D | nghttp2_test_helper.h | 90 int32_t promised_stream_id, const nghttp2_nv *nva,
|
H A D | nghttp2_test_helper.c | 236 int32_t promised_stream_id, const nghttp2_nv *nva, in pack_push_promise() 245 promised_stream_id, dnva, nvlen); in pack_push_promise() 234 pack_push_promise(nghttp2_bufs *bufs, nghttp2_hd_deflater *deflater, int32_t stream_id, uint8_t flags, int32_t promised_stream_id, const nghttp2_nv *nva, size_t nvlen, nghttp2_mem *mem) pack_push_promise() argument
|
H A D | nghttp2_frame_test.c | 341 CU_ASSERT((1U << 31) - 1 == oframe.promised_stream_id); in test_nghttp2_frame_pack_push_promise()
|
/third_party/curl/lib/ |
H A D | http2.c | 869 frame->promised_stream_id); in push_promise() 929 newstream->id = frame->promised_stream_id; in push_promise() 1065 frame->push_promise.promised_stream_id, in on_stream_frame()
|
/third_party/nghttp2/lib/includes/nghttp2/ |
H A D | nghttp2.h | 1161 int32_t promised_stream_id; member 1676 * Again, use ``frame->push_promise.promised_stream_id`` as stream_id 1753 * Again, use ``frame->push_promise.promised_stream_id`` as stream_id
|
/third_party/node/deps/nghttp2/lib/includes/nghttp2/ |
H A D | nghttp2.h | 1156 int32_t promised_stream_id; member 1671 * Again, use ``frame->push_promise.promised_stream_id`` as stream_id 1748 * Again, use ``frame->push_promise.promised_stream_id`` as stream_id
|