diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-11-23 22:59:04 -0800 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-11-23 23:00:18 -0800 |
commit | a1602f3a256177d5d9474a403928cc6bc00bbc85 (patch) | |
tree | 71c22ea459b3868d7e037aa870389f4c5c9ce4a3 /api/gobgp.proto | |
parent | d62984352e4acc8c6091213f37a18d41dfe1c49d (diff) |
rpki: grpc support
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r-- | api/gobgp.proto | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto index fc6d8f69..2857cf45 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -39,6 +39,7 @@ service GobgpApi { rpc GetMrt(MrtArguments) returns (stream MrtMessage) {} rpc ModMrt(ModMrtArguments) returns (Error) {} rpc GetRPKI(Arguments) returns (stream RPKI) {} + rpc ModRPKI(ModRpkiArguments) returns (Error) {} rpc GetROA(Arguments) returns (stream ROA) {} rpc GetVrfs(Arguments) returns (stream Vrf) {} rpc ModVrf(ModVrfArguments) returns (Error) {} @@ -93,6 +94,12 @@ message ModMrtArguments { string filename = 2; } +message ModRpkiArguments { + Operation operation = 1; + string address = 2; + uint32 port = 3; +} + message ModVrfArguments { Operation operation = 1; Vrf vrf = 2; |