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;
|
MIGRATE = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
message Response {
|
||||||
message Result {
|
EventType type = 1;
|
||||||
string name = 1;
|
int32 id = 2;
|
||||||
string error = 2;
|
string name = 3;
|
||||||
repeated string snippets = 3;
|
string error = 4;
|
||||||
|
repeated string snippets = 5;
|
||||||
}
|
}
|
||||||
|
|
||||||
message Event {
|
message Event {
|
||||||
EventType type = 1;
|
EventType type = 1;
|
||||||
int32 id = 2;
|
int32 id = 2;
|
||||||
Result result = 3;
|
repeated Response result = 3;
|
||||||
string name = 4;
|
string name = 4;
|
||||||
|
|
||||||
string comment = 5;
|
string comment = 5;
|
||||||
|
|
Loading…
Reference in New Issue