diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-01-17 06:16:33 -0800 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-01-17 06:21:23 -0800 |
commit | f4c409941848b72ba5b162405dc5022d76fcc59f (patch) | |
tree | 03d378ab66b07b94ff7473d2e000be44d71a28e6 /api/gobgp.proto | |
parent | 1e564f2d3085e394c0983627ea6fcc95df49a50d (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.proto | 13 |
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 { |