Preserve timestamp in DTLS writable event.
Bug: webrtc:10088 Change-Id: I63cd8cd3142c466c4ade74caee231a50fee8191e Reviewed-on: https://webrtc-review.googlesource.com/c/113066 Reviewed-by: Zach Stein <zstein@webrtc.org> Commit-Queue: Björn Terelius <terelius@webrtc.org> Cr-Commit-Position: refs/heads/master@{#25898}
This commit is contained in:

committed by
Commit Bot

parent
7e0299e245
commit
a713505c18
@ -19,7 +19,7 @@ RtcEventDtlsWritableState::RtcEventDtlsWritableState(bool writable)
|
|||||||
|
|
||||||
RtcEventDtlsWritableState::RtcEventDtlsWritableState(
|
RtcEventDtlsWritableState::RtcEventDtlsWritableState(
|
||||||
const RtcEventDtlsWritableState& other)
|
const RtcEventDtlsWritableState& other)
|
||||||
: writable_(other.writable_) {}
|
: RtcEvent(other.timestamp_us_), writable_(other.writable_) {}
|
||||||
|
|
||||||
RtcEventDtlsWritableState::~RtcEventDtlsWritableState() = default;
|
RtcEventDtlsWritableState::~RtcEventDtlsWritableState() = default;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user