Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(500)

Unified Diff: webrtc/test/fake_network_pipe.h

Issue 1995683003: Allow FakeNetworkPipe to drop packets in bursts. (Closed) Base URL: https://chromium.googlesource.com/external/webrtc.git@master
Patch Set: Included cmath for std::ceil. Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | webrtc/test/fake_network_pipe.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: webrtc/test/fake_network_pipe.h
diff --git a/webrtc/test/fake_network_pipe.h b/webrtc/test/fake_network_pipe.h
index 608ff008c9919c4e23bc418806cd56f59fd58380..2dcbcf59d128fbf732adba4e373aeb352741c5e1 100644
--- a/webrtc/test/fake_network_pipe.h
+++ b/webrtc/test/fake_network_pipe.h
@@ -80,6 +80,8 @@ class FakeNetworkPipe {
int loss_percent = 0;
// If packets are allowed to be reordered.
bool allow_reordering = false;
+ // The average length of a burst of lost packets.
+ int avg_burst_loss_length = -1;
};
FakeNetworkPipe(Clock* clock, const FakeNetworkPipe::Config& config);
@@ -133,6 +135,16 @@ class FakeNetworkPipe {
size_t sent_packets_;
int64_t total_packet_delay_;
+ // Are we currently dropping a burst of packets?
+ bool bursting_;
+
+ // The probability to drop the packet if we are currently dropping a
+ // burst of packet
+ double prob_loss_bursting_;
+
+ // The probability to drop a burst of packets.
+ double prob_start_bursting_;
+
int64_t next_process_time_;
RTC_DISALLOW_COPY_AND_ASSIGN(FakeNetworkPipe);
« no previous file with comments | « no previous file | webrtc/test/fake_network_pipe.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698