diff options
author | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2018-11-24 20:45:53 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2018-11-25 20:15:04 +0900 |
commit | 7ec6a96962637d0c6f525ec6e8dd517f785842c7 (patch) | |
tree | 9a0b2f65e7221be2e01cb7e152c48fa5cb8f32f5 /api/gobgp.proto | |
parent | ae52d609352a4e0211c5ae2e3104703cdb94eb50 (diff) |
api: move RouterId to PeerState from PeerConf
It's not configuration.
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r-- | api/gobgp.proto | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto index fde3a793..8dedf878 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -621,12 +621,11 @@ message PeerConf { RemovePrivateAs remove_private_as = 8; bool route_flap_damping = 9; uint32 send_community = 10; - string id = 11; - string neighbor_interface = 12; - string vrf = 13; - uint32 allow_own_as = 14; - bool replace_peer_as = 15; - bool admin_down = 16; + string neighbor_interface = 11; + string vrf = 12; + uint32 allow_own_as = 13; + bool replace_peer_as = 14; + bool admin_down = 15; } message PeerGroupConf { @@ -713,6 +712,7 @@ message PeerState { // "api/capability.proto". repeated google.protobuf.Any remote_cap = 21; repeated google.protobuf.Any local_cap = 22; + string router_id = 23; } message Messages { |