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

Unified Diff: webrtc/tools/network_tester/network_tester_config.proto

Issue 2779233002: Add first part of the network_tester functionality. (Closed)
Patch Set: Add proto files Created 3 years, 9 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
Index: webrtc/tools/network_tester/network_tester_config.proto
diff --git a/webrtc/tools/network_tester/network_tester_config.proto b/webrtc/tools/network_tester/network_tester_config.proto
new file mode 100644
index 0000000000000000000000000000000000000000..817fa7a54cb3cf0a543dbf3fe498e907e69f0036
--- /dev/null
+++ b/webrtc/tools/network_tester/network_tester_config.proto
@@ -0,0 +1,9 @@
+syntax = "proto2";
+option optimize_for = LITE_RUNTIME;
+package webrtc.network_tester.config;
+
+message NetworkTesterConfig {
+ optional int32 packet_send_interval_ms = 1;
+ optional float packet_size = 2;
+ optional int32 execution_time_ms = 3;
+}
minyue-webrtc 2017/04/03 08:05:19 Maybe you want to add message NetworkTesterAllCon
minyue-webrtc 2017/04/04 09:08:01 Any reply?
michaelt 2017/04/04 09:18:45 Oops i missed that one. At the moment I do the ser
minyue-webrtc 2017/04/04 09:24:34 That's way I suggested an overall config. That may
michaelt 2017/04/04 09:29:37 I still would need get the configs one by one. Bu

Powered by Google App Engine
This is Rietveld 408576698