From c3a4ee7079b670b015c96a6c4bf75a912fbc8428 Mon Sep 17 00:00:00 2001 From: Annika Wickert <annika.wickert@exaring.de> Date: Tue, 23 Jul 2019 20:03:22 +0200 Subject: [PATCH] Fix alignment issue on arm --- protocols/bgp/server/fsm.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/protocols/bgp/server/fsm.go b/protocols/bgp/server/fsm.go index b52bb100..eafdf796 100644 --- a/protocols/bgp/server/fsm.go +++ b/protocols/bgp/server/fsm.go @@ -37,6 +37,8 @@ type state interface { // FSM implements the BGP finite state machine (RFC4271) type FSM struct { + counters fsmCounters + isBMP bool peer *peer eventCh chan int @@ -78,7 +80,6 @@ type FSM struct { active bool establishedTime time.Time - counters fsmCounters connectionCancelFunc context.CancelFunc } -- GitLab