From 4e55928063b4f3378d2e9425c551ce0288ca39a2 Mon Sep 17 00:00:00 2001 From: Ryan Dahl Date: Sun, 27 May 2018 12:49:20 -0400 Subject: Add readFileSync --- msg.proto | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'msg.proto') diff --git a/msg.proto b/msg.proto index 1c18c8018..ecd636618 100644 --- a/msg.proto +++ b/msg.proto @@ -19,6 +19,8 @@ message Msg { TIMER_CLEAR = 8; FETCH_REQ = 9; FETCH_RES = 10; + READ_FILE_SYNC = 11; + READ_FILE_SYNC_RES = 12; } Command command = 1; @@ -81,4 +83,10 @@ message Msg { int32 fetch_res_status = 101; repeated string fetch_res_header_line = 102; bytes fetch_res_body = 103; + + // READ_FILE_SYNC + string read_file_sync_filename = 110; + + // READ_FILE_SYNC_RES + bytes read_file_sync_data = 120; } -- cgit v1.2.3