mirror of
https://github.com/checkpoint-restore/criu
synced 2025-08-26 20:07:28 +00:00
.. to address protobuf 3.x proto-c warnings Signed-off-by: Pavel Emelyanov <xemul@virtuozzo.com>
12 lines
227 B
Protocol Buffer
12 lines
227 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
import "opts.proto";
|
|
import "fown.proto";
|
|
|
|
message pipe_entry {
|
|
required uint32 id = 1;
|
|
required uint32 pipe_id = 2;
|
|
required uint32 flags = 3 [(criu).hex = true];
|
|
required fown_entry fown = 4;
|
|
}
|