mirror of
https://github.com/checkpoint-restore/criu.git
synced 2026-01-23 02:14:37 +00:00
Signed-off-by: Cyrill Gorcunov <gorcunov@openvz.org> Signed-off-by: Andrei Vagin <avagin@virtuozzo.com>
14 lines
296 B
Protocol Buffer
14 lines
296 B
Protocol Buffer
syntax = "proto2";
|
|
|
|
message scm_entry {
|
|
required uint32 type = 1;
|
|
repeated uint32 rights = 2;
|
|
}
|
|
|
|
message sk_packet_entry {
|
|
required uint32 id_for = 1;
|
|
required uint32 length = 2;
|
|
// optional bytes addr = 3;
|
|
repeated scm_entry scm = 4;
|
|
// optional sk_ucred_entry ucred = 128;
|
|
}
|