diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-04-21 13:29:59 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2016-04-21 13:29:59 +0900 |
commit | 35efcd570d65a55cf059653ba153fdb360b71672 (patch) | |
tree | 9f7083e24b4074404afbac23d55ae37244f04b1d /api/gobgp.proto | |
parent | 7e1b1868193bb2a6bbf49d17f2af7dc1f6a962bf (diff) |
rpki: delete roa validation stream API
better to be implemented outside GoBGP.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r-- | api/gobgp.proto | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto index e20caa0e..e17aebf9 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -38,7 +38,6 @@ service GobgpApi { rpc MonitorRib(Table) returns (stream Destination) {} rpc MonitorBestChanged(Arguments) returns (stream Destination) {} rpc MonitorPeerState(Arguments) returns (stream Peer) {} - rpc MonitorROAValidation(Arguments) returns (stream ROAResult) {} rpc GetMrt(MrtArguments) returns (stream MrtMessage) {} rpc ModMrt(ModMrtArguments) returns (Error) {} rpc ModBmp(ModBmpArguments) returns (Error) {} @@ -523,30 +522,6 @@ message ROA { RPKIConf conf = 5; } -message ROAResult { - enum ValidationReason { - UPDATE = 0; - WITHDRAW = 1; - PEER_DOWN = 2; - REVALIDATE = 3; - } - ValidationReason reason = 1; - string address = 2; - int64 timestamp = 3; - bytes aspath_attr = 4; - uint32 origin_as = 5; - string prefix = 6; - enum ValidationResult { - NONE = 0; - NOT_FOUND = 1; - VALID = 2; - INVALID = 3; - } - ValidationResult old_result = 7; - ValidationResult new_result = 8; - repeated ROA roas = 9; -} - message Vrf { string name = 1; bytes rd = 2; |