From 8cadc751ca6cccbf2b8edbab6b11c01b347418eb Mon Sep 17 00:00:00 2001 From: Dmitri Nikulin Date: Thu, 23 Apr 2020 12:43:43 -0600 Subject: Add //go:generate stringer directives for public enum types. All such directives can be invoked by running $ go generate Stringer itself can be obtained by running $ go get golang.org/x/tools/cmd/stringer See https://github.com/osrg/gobgp/issues/2265 --- pkg/packet/bgp/bgp.go | 2 ++ pkg/packet/bgp/constant.go | 1 + 2 files changed, 3 insertions(+) (limited to 'pkg') diff --git a/pkg/packet/bgp/bgp.go b/pkg/packet/bgp/bgp.go index f72a3706..2790c080 100644 --- a/pkg/packet/bgp/bgp.go +++ b/pkg/packet/bgp/bgp.go @@ -2102,6 +2102,7 @@ func NewRouteTargetMembershipNLRI(as uint32, target ExtendedCommunityInterface) } } +//go:generate stringer -type=ESIType type ESIType uint8 const ( @@ -8284,6 +8285,7 @@ func (f BGPAttrFlag) String() string { return strings.Join(strs, "|") } +//go:generate stringer -type=BGPAttrType type BGPAttrType uint8 const ( diff --git a/pkg/packet/bgp/constant.go b/pkg/packet/bgp/constant.go index 6f87efdd..3274afbd 100644 --- a/pkg/packet/bgp/constant.go +++ b/pkg/packet/bgp/constant.go @@ -24,6 +24,7 @@ const AS_TRANS = 23456 const BGP_PORT = 179 +//go:generate stringer -type=FSMState type FSMState int const ( -- cgit v1.2.3