Skip to content
Snippets Groups Projects
Unverified Commit 3f4502e8 authored by Annika Wickert's avatar Annika Wickert Committed by GitHub
Browse files

Merge pull request #215 from bio-routing/bugfix_atomic_arm

Fix alignment issue on arm
parents 951fd742 c3a4ee70
No related branches found
No related tags found
No related merge requests found
...@@ -37,6 +37,8 @@ type state interface { ...@@ -37,6 +37,8 @@ type state interface {
// FSM implements the BGP finite state machine (RFC4271) // FSM implements the BGP finite state machine (RFC4271)
type FSM struct { type FSM struct {
counters fsmCounters
isBMP bool isBMP bool
peer *peer peer *peer
eventCh chan int eventCh chan int
...@@ -78,7 +80,6 @@ type FSM struct { ...@@ -78,7 +80,6 @@ type FSM struct {
active bool active bool
establishedTime time.Time establishedTime time.Time
counters fsmCounters
connectionCancelFunc context.CancelFunc connectionCancelFunc context.CancelFunc
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment