add a mode to use unix socket between agent and drivers
this's to support user builds
Change-Id: I908bcc0599f8c241b2ed7f834a5b8018bd81f613
diff --git a/proto/AndroidSystemControlMessage.proto b/proto/AndroidSystemControlMessage.proto
index d616338..97d713e 100644
--- a/proto/AndroidSystemControlMessage.proto
+++ b/proto/AndroidSystemControlMessage.proto
@@ -26,9 +26,9 @@
SET_HOST_INFO = 2;
// To check whether fuzzer's binder service is available.
- CHECK_STUB_SERVICE = 101;
+ CHECK_DRIVER_SERVICE = 101;
// To start a fuzzer binary service and select a HAL module.
- LAUNCH_STUB_SERVICE = 102;
+ LAUNCH_DRIVER_SERVICE = 102;
// To get a list of available functions.
LIST_APIS = 201;
@@ -58,11 +58,11 @@
// for SET_HOST_INFO
optional int32 callback_port = 1101;
- // for CHECK_STUB_SERVICE
+ // for CHECK_DRIVER_SERVICE
// the binder service name
optional bytes service_name = 2001;
- // for LAUNCH_STUB_SERVICE
+ // for LAUNCH_DRIVER_SERVICE
// The name of a target.
optional bytes file_path = 3001;