diff options
author | Naoto Hanaue <hanaue.naoto@po.ntts.co.jp> | 2015-08-05 17:21:51 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-08-05 22:12:24 +0900 |
commit | ad4bfac371e545e2713e9157cc6e5f6af5278635 (patch) | |
tree | 46e44865c4b74af43c262f366c5fa3d0cb870b11 /api/gobgp.proto | |
parent | 0b5bb073128b3000f383927a997d4a40d274f569 (diff) |
config: change type of Prefix in the PrefixSet
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r-- | api/gobgp.proto | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto index 2f20a5b9..74c0b993 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -420,9 +420,8 @@ message Peer { } message Prefix { - string address = 1; - uint32 mask_length = 2; - string mask_length_range = 3; + string ip_prefix = 1; + string mask_length_range = 2; } message PrefixSet { |