Lines Matching refs:stream_identifier

62 	LOG_DBG("  %sStream Identifier:%s %u", blue, reset, frame->stream_identifier);  in print_http_frames()
323 ret = send_headers_frame(client, HTTP_404_NOT_FOUND, frame->stream_identifier, NULL, 0, in send_http2_404()
331 frame->stream_identifier, in send_http2_404()
345 ret = send_headers_frame(client, HTTP_409_CONFLICT, frame->stream_identifier, NULL, in send_http2_409()
373 ret = send_headers_frame(client, HTTP_200_OK, frame->stream_identifier, in handle_http2_static_resource()
383 frame->stream_identifier, in handle_http2_static_resource()
441 ret = send_headers_frame(client, HTTP_404_NOT_FOUND, frame->stream_identifier, NULL, in handle_http2_static_fs_resource()
461 ret = send_headers_frame(client, HTTP_200_OK, frame->stream_identifier, &res_detail, 0, in handle_http2_static_fs_resource()
480 ret = send_data_frame(client, tmp, len, frame->stream_identifier, in handle_http2_static_fs_resource()
532 ret = send_headers_frame(client, rsp->status, frame->stream_identifier, in http2_dynamic_response()
549 ret = send_data_frame(client, rsp->body, rsp->body_len, frame->stream_identifier, in http2_dynamic_response()
599 ret = send_data_frame(client, NULL, 0, frame->stream_identifier, in dynamic_get_del_req_v2()
688 ret = send_data_frame(client, NULL, 0, frame->stream_identifier, in dynamic_post_put_req_v2()
817 if (frame->stream_identifier == 0) { in enter_http_frame_data_state()
822 stream = find_http_stream_context(client, frame->stream_identifier); in enter_http_frame_data_state()
825 frame->stream_identifier); in enter_http_frame_data_state()
849 stream = find_http_stream_context(client, frame->stream_identifier); in enter_http_frame_headers_state()
851 LOG_DBG("|| stream ID || %d", frame->stream_identifier); in enter_http_frame_headers_state()
853 stream = allocate_http_stream_context(client, frame->stream_identifier); in enter_http_frame_headers_state()
993 frame->stream_identifier = 1; in handle_http1_to_http2_upgrade()
1003 stream = find_http_stream_context(client, frame->stream_identifier); in handle_http1_to_http2_upgrade()
1005 stream = allocate_http_stream_context(client, frame->stream_identifier); in handle_http1_to_http2_upgrade()
1080 release_http_stream_context(client, frame->stream_identifier); in handle_http1_to_http2_upgrade()
1181 find_http_stream_context(client, frame->stream_identifier); in handle_http_frame_data()
1185 frame->stream_identifier); in handle_http_frame_data()
1201 release_http_stream_context(client, frame->stream_identifier); in handle_http_frame_data()
1428 ret = send_headers_frame(client, HTTP_200_OK, frame->stream_identifier, in handle_http_frame_headers_end_stream()
1436 ret = send_data_frame(client, NULL, 0, frame->stream_identifier, in handle_http_frame_headers_end_stream()
1446 release_http_stream_context(client, frame->stream_identifier); in handle_http_frame_headers_end_stream()
1602 if (frame->stream_identifier == 0) { in handle_http_frame_rst_stream()
1606 stream_ctx = find_http_stream_context(client, frame->stream_identifier); in handle_http_frame_rst_stream()
1767 frame->stream_identifier = sys_get_be32( in parse_http_frame_header()
1769 frame->stream_identifier &= HTTP2_FRAME_STREAM_ID_MASK; in parse_http_frame_header()
1773 frame->length, frame->type, frame->flags, frame->stream_identifier); in parse_http_frame_header()