webrtc/rtc_tools/network_tester/network_tester_packet.proto
Mirko Bonadei bb547203bf Moving src/webrtc into src/.
In order to eliminate the WebRTC Subtree mirror in Chromium, 
WebRTC is moving the content of the src/webrtc directory up
to the src/ directory.

NOPRESUBMIT=true
NOTREECHECKS=true
NOTRY=true
TBR=tommi@webrtc.org

Bug: chromium:611808
Change-Id: Iac59c5b51b950f174119565bac87955a7994bc38
Reviewed-on: https://webrtc-review.googlesource.com/1560
Commit-Queue: Mirko Bonadei <mbonadei@webrtc.org>
Reviewed-by: Henrik Kjellander <kjellander@webrtc.org>
Cr-Commit-Position: refs/heads/master@{#19845}
2017-09-15 04:25:06 +00:00

18 lines
400 B
Protocol Buffer

syntax = "proto2";
option optimize_for = LITE_RUNTIME;
package webrtc.network_tester.packet;
message NetworkTesterPacket {
enum Type {
HAND_SHAKING = 0;
TEST_START = 1;
TEST_DATA = 2;
TEST_DONE = 3;
}
optional Type type = 1;
optional int64 send_timestamp = 2;
optional int64 arrival_timestamp = 3;
optional int64 sequence_number = 4;
optional int32 packet_size = 5;
}