blob: 759b7d3a9ddac6a6115cb20fa3fd49476acebf72 [file] [log] [blame]
syntax = "proto2";
message SyncState
{
required bytes name = 1;
enum ActionType
{
UPDATE = 0;
DELETE = 1;
}
required ActionType type = 2;
optional uint64 seq = 3;
optional bytes locator = 4;
optional uint64 old_seq = 5;
}
message SyncStateMsg
{
repeated SyncState state = 1;
}