syntax = "proto3";
package io.itch.wharf.bsdiff;
option go_package = "bsdiff";
// Control is a bsdiff operation, see https://twitter.com/fasterthanlime/status/790617515009437701
message Control {
bytes add = 1;
bytes copy = 2;
int64 seek = 3;
bool eof = 4; // when true, don't apply and stop reading bsdiff control
}