works against example in dnssecsocket/example-protobuf/

Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
Jeff Carr 2019-05-10 12:36:09 -07:00
parent b5cb16b14f
commit fbc0ebb96b
1 changed files with 7 additions and 6 deletions

View File

@ -10,17 +10,18 @@ enum EventType {
MIGRATE = 5;
}
message Result {
string name = 1;
string error = 2;
repeated string snippets = 3;
message Response {
EventType type = 1;
int32 id = 2;
string name = 3;
string error = 4;
repeated string snippets = 5;
}
message Event {
EventType type = 1;
int32 id = 2;
Result result = 3;
repeated Response result = 3;
string name = 4;
string comment = 5;