diff options
Diffstat (limited to 'api')
-rw-r--r-- | api/gobgp.pb.go | 1 | ||||
-rw-r--r-- | api/gobgp.proto | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/api/gobgp.pb.go b/api/gobgp.pb.go index bc1cad51..e4214a66 100644 --- a/api/gobgp.pb.go +++ b/api/gobgp.pb.go @@ -1162,6 +1162,7 @@ func (*CommunityAction) ProtoMessage() {} type Actions struct { RouteAction string `protobuf:"bytes,1,opt,name=route_action" json:"route_action,omitempty"` Community *CommunityAction `protobuf:"bytes,2,opt,name=community" json:"community,omitempty"` + Med string `protobuf:"bytes,3,opt,name=med" json:"med,omitempty"` } func (m *Actions) Reset() { *m = Actions{} } diff --git a/api/gobgp.proto b/api/gobgp.proto index 1e789502..d52f96dc 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -431,6 +431,7 @@ message CommunityAction { message Actions { string route_action = 1; CommunityAction community = 2; + string med = 3; } message Statement { |