You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@trafficserver.apache.org by ma...@apache.org on 2019/01/28 02:04:19 UTC

[trafficserver] branch quic-latest updated: Record stream id of STREAM frames for retransmission

This is an automated email from the ASF dual-hosted git repository.

maskit pushed a commit to branch quic-latest
in repository https://gitbox.apache.org/repos/asf/trafficserver.git


The following commit(s) were added to refs/heads/quic-latest by this push:
     new 2ad2237  Record stream id of STREAM frames for retransmission
2ad2237 is described below

commit 2ad2237cd2d30bba0cb24711125700e71dd0969c
Author: Masakazu Kitajo <ma...@apache.org>
AuthorDate: Mon Jan 28 11:02:27 2019 +0900

    Record stream id of STREAM frames for retransmission
---
 iocore/net/quic/QUICStream.cc | 1 +
 1 file changed, 1 insertion(+)

diff --git a/iocore/net/quic/QUICStream.cc b/iocore/net/quic/QUICStream.cc
index 082adb1..b75e828 100644
--- a/iocore/net/quic/QUICStream.cc
+++ b/iocore/net/quic/QUICStream.cc
@@ -542,6 +542,7 @@ QUICStream::_records_stream_frame(QUICEncryptionLevel level, const QUICStreamFra
   info->type                    = frame.type();
   info->level                   = level;
   StreamFrameInfo *frame_info   = reinterpret_cast<StreamFrameInfo *>(info->data);
+  frame_info->stream_id         = frame.stream_id();
   frame_info->offset            = frame.offset();
   frame_info->has_fin           = frame.has_fin_flag();
   frame_info->block             = frame.data();