diff options
author | ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp> | 2015-08-01 19:54:40 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-08-08 20:56:46 +0900 |
commit | ef934f76a52df814d5c77f9d0c3f9acaeb0856d9 (patch) | |
tree | 745f67a7fbc30cacf4286f99ec22434344ebcd08 /api/gobgp.proto | |
parent | 74fd2e51ee6746440602250b11477ba96d86c258 (diff) |
api: change arguments name from neighbor_address to name
planning to use this variable more generally (for vrf)
Signed-off-by: ISHIDA Wataru <ishida.wataru@lab.ntt.co.jp>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r-- | api/gobgp.proto | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto index 74c0b993..92f9fcf5 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -55,15 +55,16 @@ message Error { message Arguments { Resource resource = 1; AddressFamily af = 2; - string neighbor_address = 3; + string name = 3; } message ModPathArguments { Resource resource = 1; - bool is_withdraw = 2; - bytes raw_nlri = 3; - repeated bytes raw_pattrs = 4; - bool no_implicit_withdraw = 5; + string name = 2; + bool is_withdraw = 3; + bytes raw_nlri = 4; + repeated bytes raw_pattrs = 5; + bool no_implicit_withdraw = 6; } message PolicyArguments { |