summaryrefslogtreecommitdiffhomepage
path: root/api/gobgp.proto
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-01-17 06:16:33 -0800
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-01-17 06:21:23 -0800
commitf4c409941848b72ba5b162405dc5022d76fcc59f (patch)
tree03d378ab66b07b94ff7473d2e000be44d71a28e6 /api/gobgp.proto
parent1e564f2d3085e394c0983627ea6fcc95df49a50d (diff)
update rpki monitor API
- handle withdraw - added some new info (peer address, timestamp, aspath attribute) Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r--api/gobgp.proto13
1 files changed, 8 insertions, 5 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto
index fbc375fa..bfc63871 100644
--- a/api/gobgp.proto
+++ b/api/gobgp.proto
@@ -485,17 +485,20 @@ message ROA {
}
message ROAResult {
- uint32 origin_as = 1;
- string prefix = 2;
+ string address = 1;
+ int64 timestamp = 2;
+ bytes aspath_attr = 3;
+ uint32 origin_as = 4;
+ string prefix = 5;
enum ValidationResult {
NONE = 0;
NOT_FOUND = 1;
VALID = 2;
INVALID = 3;
}
- ValidationResult old_result = 3;
- ValidationResult new_result = 4;
- repeated ROA roas = 5;
+ ValidationResult old_result = 6;
+ ValidationResult new_result = 7;
+ repeated ROA roas = 8;
}
message Vrf {