diff options
author | IWASE Yusuke <iwase.yusuke0@gmail.com> | 2017-07-04 16:41:26 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2017-07-26 14:37:04 +0900 |
commit | 415710f94d85ed3c3e042ee6cfb83751b0ec003c (patch) | |
tree | af2b56538a8d71b97ef9f3f046c01840c91f2332 /tools | |
parent | 075f5a719f5d07756915b9766806a5759f0b321e (diff) |
config: Use BmpServerConfig struct in BmpServerState
Currently, BmpServerState has empty structure and can not store any
configration information.
This patch fixes to use BmpServerConfig structure in BmpServerState to
store the same information.
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'tools')
-rw-r--r-- | tools/pyang_plugins/gobgp.yang | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/pyang_plugins/gobgp.yang b/tools/pyang_plugins/gobgp.yang index 9ada88d4..46d3866f 100644 --- a/tools/pyang_plugins/gobgp.yang +++ b/tools/pyang_plugins/gobgp.yang @@ -585,10 +585,6 @@ module gobgp { } } - grouping gobgp-bmp-server-state { - description "additional BMP state"; - } - grouping gobgp-bmp-server-set { description "additional BMP configuration and state"; @@ -601,7 +597,7 @@ module gobgp { container state { description "Configuration parameters relating to BMP server"; - uses gobgp-bmp-server-state; + uses gobgp-bmp-server-config; } } |