diff options
author | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2018-12-28 22:48:54 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@gmail.com> | 2018-12-28 23:27:53 +0900 |
commit | d7e5bf22a6ef7ebbed02968d5610968e3f06cfc6 (patch) | |
tree | edfbe24fd80c7eafa035708a704b6e2ba9815b6e /api/gobgp.proto | |
parent | c83d234c308ce3b9f0d9e7b52ecfb84657e4e300 (diff) |
fix bmp statistics
fix the regression of the adj counter due to
301b48532d4a5510c9d4ffdc44eb2754fdd1a3d1
Signed-off-by: FUJITA Tomonori <fujita.tomonori@gmail.com>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r-- | api/gobgp.proto | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto index dc6d3b22..d1f49a4a 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -723,6 +723,8 @@ message Message { uint64 refresh = 5; uint64 discarded = 6; uint64 total = 7; + uint64 withdraw_update = 8; + uint64 withdraw_prefix = 9; } message Queues { @@ -804,9 +806,9 @@ message AfiSafiConfig { message AfiSafiState { Family family = 1; bool enabled = 2; - uint32 received = 3; - uint32 accepted = 4; - uint32 advertised = 5; + uint64 received = 3; + uint64 accepted = 4; + uint64 advertised = 5; } message RouteSelectionOptionsConfig { |