From d285be5ed7509511bb2aa36b8da8152aa6fe335d Mon Sep 17 00:00:00 2001 From: Pavel Emelyanov Date: Mon, 16 Sep 2013 15:23:00 +0400 Subject: [PATCH] rpc: Renumber dump-req fields Put important things first, secondary last. Signed-off-by: Pavel Emelyanov --- protobuf/rpc.proto | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/protobuf/rpc.proto b/protobuf/rpc.proto index 66966a3e0..7f2c597cd 100644 --- a/protobuf/rpc.proto +++ b/protobuf/rpc.proto @@ -1,12 +1,13 @@ message criu_dump_req { - optional int32 pid = 1; //if not set, will dump requesting process - optional bool leave_running = 2; - optional bool ext_unix_sk = 3; - optional bool tcp_established = 4; - optional bool evasive_devices = 5; - optional bool shell_job = 6; - optional bool file_locks = 7; - required int32 images_dir_fd = 8; + required int32 images_dir_fd = 1; + optional int32 pid = 2; //if not set, will dump requesting process + + optional bool leave_running = 3; + optional bool ext_unix_sk = 4; + optional bool tcp_established = 5; + optional bool evasive_devices = 6; + optional bool shell_job = 7; + optional bool file_locks = 8; optional int32 log_level = 9 [default = 2]; }