diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-12-17 15:31:48 -0800 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-12-17 15:31:48 -0800 |
commit | bbc640470e207a7c5d8a9bb4308dfed330f94412 (patch) | |
tree | 9a361590acca67f3503450c6344f556055ae71eb /api/gobgp.proto | |
parent | c8a3caacf30fd28f4732de91c05e51f61eb15b99 (diff) |
rpki: support multiple roa servers
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r-- | api/gobgp.proto | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto index fc800167..df52a93e 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -151,6 +151,10 @@ enum Operation { DEL = 1; DEL_ALL = 2; REPLACE = 3; + ENABLE = 4; + DISABLE = 5; + RESET = 6; + SOFTRESET = 7; } message Path { @@ -436,8 +440,8 @@ message RPKIConf { message RPKIState { int64 uptime = 1; int64 downtime = 2; - int32 received_ipv4 = 3; - int32 received_ipv6 = 4; + int64 received_ipv4 = 3; + int64 received_ipv6 = 4; } message RPKI { |