diff options
author | Yash Tibrewal <yashkt@google.com> | 2018-11-29 01:26:45 -0800 |
---|---|---|
committer | Yash Tibrewal <yashkt@google.com> | 2018-11-29 01:26:45 -0800 |
commit | 9506d356740f8375f121e00e057a2eba41c97a98 (patch) | |
tree | 7ed16ae19b1478f2a13398205859ace41f47ef0c /src/core/lib | |
parent | fe4ef31ac28f702755c67cb0d79140bc9cbaa552 (diff) |
Add a byte counter to chttp2_stream and use that for timestamps
Diffstat (limited to 'src/core/lib')
-rw-r--r-- | src/core/lib/iomgr/buffer_list.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/buffer_list.h b/src/core/lib/iomgr/buffer_list.h index 9f62d988cc..627f1bde99 100644 --- a/src/core/lib/iomgr/buffer_list.h +++ b/src/core/lib/iomgr/buffer_list.h @@ -38,7 +38,7 @@ struct Timestamps { gpr_timespec sent_time; gpr_timespec acked_time; - uint32_t length; /* The length of the buffer traced */ + uint32_t byte_offset; /* byte offset relative to the start of the RPC */ }; /** TracedBuffer is a class to keep track of timestamps for a specific buffer in |