From 59f06d99530676c638495d9cde0748f7653e33e5 Mon Sep 17 00:00:00 2001 From: Christopher Peplin Date: Fri, 17 Jan 2014 14:31:39 -0500 Subject: Store diagnostic response payload as a byte array in protobuf. --- openxc.proto | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'openxc.proto') diff --git a/openxc.proto b/openxc.proto index 72cd33f6..1b438539 100644 --- a/openxc.proto +++ b/openxc.proto @@ -24,7 +24,9 @@ message DiagnosticMessage { optional uint32 pid = 4; optional bool success = 5; optional uint32 negative_response_code = 6; - optional uint64 payload = 7; + // TODO we are capping this at 8 bytes for now - need to change when we + // support multi-frame responses + optional bytes payload = 7; } message TranslatedMessage { -- cgit