works against example in dnssecsocket/example-protobuf/
Signed-off-by: Jeff Carr <jcarr@wit.com>
This commit is contained in:
parent
b5cb16b14f
commit
fbc0ebb96b
13
events.proto
13
events.proto
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue