summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--packet/bgp.go22
-rw-r--r--packet/bgp_test.go6
2 files changed, 13 insertions, 15 deletions
diff --git a/packet/bgp.go b/packet/bgp.go
index 20fb47ee..79a03aac 100644
--- a/packet/bgp.go
+++ b/packet/bgp.go
@@ -53,8 +53,8 @@ const (
)
const (
- BGP_ASPATH_ATTR_TYPE_SET = 1
- BGP_ASPATH_ATTR_TYPE_SEQ = 2
+ BGP_ASPATH_ATTR_TYPE_SET = 1
+ BGP_ASPATH_ATTR_TYPE_SEQ = 2
BGP_ASPATH_ATTR_TYPE_CONFED_SEQ = 3
BGP_ASPATH_ATTR_TYPE_CONFED_SET = 4
)
@@ -1998,11 +1998,11 @@ func (a *AsPathParam) Len() int {
func (a *AsPathParam) ASLen() int {
switch a.Type {
- case BGP_ASPATH_ATTR_TYPE_SEQ:
+ case BGP_ASPATH_ATTR_TYPE_SEQ:
return len(a.AS)
- case BGP_ASPATH_ATTR_TYPE_SET:
+ case BGP_ASPATH_ATTR_TYPE_SET:
return 1
- case BGP_ASPATH_ATTR_TYPE_CONFED_SET,BGP_ASPATH_ATTR_TYPE_CONFED_SEQ:
+ case BGP_ASPATH_ATTR_TYPE_CONFED_SET, BGP_ASPATH_ATTR_TYPE_CONFED_SEQ:
return 0
}
return 0
@@ -2057,11 +2057,11 @@ func (a *As4PathParam) Len() int {
func (a *As4PathParam) ASLen() int {
switch a.Type {
- case BGP_ASPATH_ATTR_TYPE_SEQ:
+ case BGP_ASPATH_ATTR_TYPE_SEQ:
return len(a.AS)
- case BGP_ASPATH_ATTR_TYPE_SET:
+ case BGP_ASPATH_ATTR_TYPE_SET:
return 1
- case BGP_ASPATH_ATTR_TYPE_CONFED_SET,BGP_ASPATH_ATTR_TYPE_CONFED_SEQ:
+ case BGP_ASPATH_ATTR_TYPE_CONFED_SET, BGP_ASPATH_ATTR_TYPE_CONFED_SEQ:
return 0
}
return 0
@@ -2205,7 +2205,7 @@ func (p *PathAttributeAsPath) ToApiStruct() *api.PathAttr {
aspaths = append(aspaths, aspath)
}
return &api.PathAttr{
- Type: api.BGP_ATTR_TYPE_AS_PATH,
+ Type: api.BGP_ATTR_TYPE_AS_PATH,
AsPaths: aspaths,
}
}
@@ -3306,14 +3306,14 @@ func (p *PathAttributeAs4Path) ToApiStruct() *api.PathAttr {
aspaths := make([]*api.AsPath, 0)
aspath := &api.AsPath{
SegmentType: uint32(p.Type),
- Asns: make([]uint32, 0),
+ Asns: make([]uint32, 0),
}
for _, a := range p.Value {
aspath.Asns = append(aspath.Asns, a.AS...)
}
aspaths = append(aspaths, aspath)
return &api.PathAttr{
- Type: api.BGP_ATTR_TYPE_AS_PATH,
+ Type: api.BGP_ATTR_TYPE_AS_PATH,
AsPaths: aspaths,
}
}
diff --git a/packet/bgp_test.go b/packet/bgp_test.go
index 8afa7363..ba969419 100644
--- a/packet/bgp_test.go
+++ b/packet/bgp_test.go
@@ -329,7 +329,7 @@ func Test_ASLen(t *testing.T) {
aspath := AsPathParam{
Num: 2,
- AS: []uint16{65000, 65001},
+ AS: []uint16{65000, 65001},
}
aspath.Type = BGP_ASPATH_ATTR_TYPE_SEQ
assert.Equal(2, aspath.ASLen())
@@ -343,10 +343,9 @@ func Test_ASLen(t *testing.T) {
aspath.Type = BGP_ASPATH_ATTR_TYPE_CONFED_SET
assert.Equal(0, aspath.ASLen())
-
as4path := As4PathParam{
Num: 2,
- AS: []uint32{65000, 65001},
+ AS: []uint32{65000, 65001},
}
as4path.Type = BGP_ASPATH_ATTR_TYPE_SEQ
assert.Equal(2, as4path.ASLen())
@@ -361,4 +360,3 @@ func Test_ASLen(t *testing.T) {
assert.Equal(0, as4path.ASLen())
}
-