summaryrefslogtreecommitdiffhomepage
path: root/api/gobgp.proto
diff options
context:
space:
mode:
authorFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-12-25 20:58:18 -0800
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-12-25 20:58:18 -0800
commit01157e466a510a9d7c7290c26a131734e7566261 (patch)
tree8570631f12fa1d4210eda619021008b9a70b6c8d /api/gobgp.proto
parentc9a3fad2bd4ffecdc7c688cbbd0ecf6b3334ae74 (diff)
rename ModPath to ModPaths
ModPath API to modify multiple paths so let's use more an appropriate name. Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r--api/gobgp.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto
index ca3b3020..c34ac23b 100644
--- a/api/gobgp.proto
+++ b/api/gobgp.proto
@@ -33,7 +33,7 @@ service GobgpApi {
rpc Shutdown(Arguments) returns (Error) {}
rpc Enable(Arguments) returns (Error) {}
rpc Disable(Arguments) returns (Error) {}
- rpc ModPath(stream ModPathArguments) returns (Error) {}
+ rpc ModPaths(stream ModPathsArguments) returns (Error) {}
rpc MonitorBestChanged(Arguments) returns (stream Destination) {}
rpc MonitorPeerState(Arguments) returns (stream Peer) {}
rpc GetMrt(MrtArguments) returns (stream MrtMessage) {}
@@ -71,7 +71,7 @@ message Arguments {
string name = 3;
}
-message ModPathArguments {
+message ModPathsArguments {
Resource resource = 1;
string name = 2;
repeated Path paths = 3;