summaryrefslogtreecommitdiffhomepage
path: root/api/gobgp.proto
diff options
context:
space:
mode:
authortamihiro <dead6oy@gmail.com>2016-04-18 16:21:03 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2016-04-21 12:27:59 +0900
commit7e1b1868193bb2a6bbf49d17f2af7dc1f6a962bf (patch)
tree65aa7e0333ee90406d8682361852d68f574149c9 /api/gobgp.proto
parente5896c901ae7b66a5ad03230575ccd5e8a24665b (diff)
config: add set-next-hop option
Diffstat (limited to 'api/gobgp.proto')
-rw-r--r--api/gobgp.proto5
1 files changed, 5 insertions, 0 deletions
diff --git a/api/gobgp.proto b/api/gobgp.proto
index fd0b6dc5..e20caa0e 100644
--- a/api/gobgp.proto
+++ b/api/gobgp.proto
@@ -443,12 +443,17 @@ message AsPrependAction {
bool use_left_most = 3;
}
+message NexthopAction {
+ string address = 1;
+}
+
message Actions {
RouteAction route_action = 1;
CommunityAction community = 2;
MedAction med = 3;
AsPrependAction as_prepend = 4;
CommunityAction ext_community = 5;
+ NexthopAction nexthop = 6;
}
message Statement {