From da62a698664abaf0f8d321824b5ee69f2cf0fba4 Mon Sep 17 00:00:00 2001 From: ISHIDA Wataru Date: Sat, 22 Aug 2015 11:33:14 +0900 Subject: api/cli: support showing extended community action Signed-off-by: ISHIDA Wataru --- api/gobgp.pb.go | 16 ++++++++++++---- api/gobgp.proto | 1 + 2 files changed, 13 insertions(+), 4 deletions(-) (limited to 'api') diff --git a/api/gobgp.pb.go b/api/gobgp.pb.go index 9ef9cbef..dbcc63d5 100644 --- a/api/gobgp.pb.go +++ b/api/gobgp.pb.go @@ -601,10 +601,11 @@ func (m *AsPrependAction) String() string { return proto.CompactTextString(m) } func (*AsPrependAction) 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"` - AsPrepend *AsPrependAction `protobuf:"bytes,4,opt,name=as_prepend" json:"as_prepend,omitempty"` + 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"` + AsPrepend *AsPrependAction `protobuf:"bytes,4,opt,name=as_prepend" json:"as_prepend,omitempty"` + ExtCommunity *CommunityAction `protobuf:"bytes,5,opt,name=ext_community" json:"ext_community,omitempty"` } func (m *Actions) Reset() { *m = Actions{} } @@ -625,6 +626,13 @@ func (m *Actions) GetAsPrepend() *AsPrependAction { return nil } +func (m *Actions) GetExtCommunity() *CommunityAction { + if m != nil { + return m.ExtCommunity + } + return nil +} + type Statement struct { StatementNeme string `protobuf:"bytes,1,opt,name=statement_neme" json:"statement_neme,omitempty"` Conditions *Conditions `protobuf:"bytes,2,opt,name=conditions" json:"conditions,omitempty"` diff --git a/api/gobgp.proto b/api/gobgp.proto index 259bdfff..135fff8c 100644 --- a/api/gobgp.proto +++ b/api/gobgp.proto @@ -265,6 +265,7 @@ message Actions { CommunityAction community = 2; string med = 3; AsPrependAction as_prepend = 4; + CommunityAction ext_community = 5; } message Statement { -- cgit v1.2.3