summaryrefslogtreecommitdiffhomepage
path: root/api/gobgp.proto
diff options
context:
space:
mode:
authorIWASE Yusuke <iwase.yusuke0@gmail.com>2017-08-02 15:09:16 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2017-10-03 14:53:44 +0900
commit36786073c1301b3ee63ff27ea7733613fd31626c (patch)
treea4658b3130f602c0eb48d091798ec1af987810b1 /api/gobgp.proto
parent6ed2c5624cbc7d2dcee126603e5f7893910d17d4 (diff)
api: Enable to set/get add-paths config via gRPC
Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r--api/gobgp.proto17
1 files changed, 17 insertions, 0 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto
index d8c66558..ed9cc11b 100644
--- a/api/gobgp.proto
+++ b/api/gobgp.proto
@@ -608,6 +608,7 @@ message Peer {
RouteServer route_server = 9;
GracefulRestart graceful_restart = 10;
repeated AfiSafi afi_safis = 11;
+ AddPaths add_paths = 12;
}
message ApplyPolicy {
@@ -902,6 +903,22 @@ message AfiSafi {
PrefixLimit prefix_limits = 6;
RouteTargetMembership route_target_membership = 7;
LongLivedGracefulRestart long_lived_graceful_restart = 8;
+ AddPaths add_paths = 9;
+}
+
+message AddPathsConfig {
+ bool receive = 1;
+ uint32 send_max = 2;
+}
+
+message AddPathsState {
+ bool receive = 1;
+ uint32 send_max = 2;
+}
+
+message AddPaths {
+ AddPathsConfig config = 1;
+ AddPathsState state = 2;
}
message Prefix {