Added Proto Buffer feature to TCP server
Bug: 29517725
Change-Id: I73656e29e5807e0e9298ddc0bfedc1c2aebb5c99
diff --git a/runners/host/proto/AndroidSystemControlMessage.proto b/runners/host/proto/AndroidSystemControlMessage.proto
index 100d4db..d616338 100644
--- a/runners/host/proto/AndroidSystemControlMessage.proto
+++ b/runners/host/proto/AndroidSystemControlMessage.proto
@@ -104,4 +104,18 @@
// for the API call result including result value, profiling data, and
// coverage measurement data.
optional bytes result = 1004;
-}
\ No newline at end of file
+}
+
+
+// To specify a callback request message for the TCP server.
+message AndroidSystemCallbackRequestMessage {
+ // callback id for the message sent to the TCP Server.
+ optional bytes id = 1;
+}
+
+
+// To specify a callback response message from the TCP server.
+message AndroidSystemCallbackResponseMessage {
+ // Response code in a Callback response from TCP server.
+ optional ResponseCode response_code = 1;
+}