aboutsummaryrefslogtreecommitdiffstats
path: root/peer.go
diff options
context:
space:
mode:
Diffstat (limited to 'peer.go')
-rw-r--r--peer.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/peer.go b/peer.go
index 242729e..f49f806 100644
--- a/peer.go
+++ b/peer.go
@@ -20,7 +20,7 @@ const (
type Peer struct {
isRunning AtomicBool
mutex sync.RWMutex
- keyPairs Keypairs
+ keypairs Keypairs
handshake Handshake
device *Device
endpoint Endpoint
@@ -234,7 +234,7 @@ func (peer *Peer) Stop() {
// clear key pairs
- kp := &peer.keyPairs
+ kp := &peer.keypairs
kp.mutex.Lock()
device.DeleteKeypair(kp.previous)
@@ -250,7 +250,7 @@ func (peer *Peer) Stop() {
hs := &peer.handshake
hs.mutex.Lock()
- device.indices.Delete(hs.localIndex)
+ device.indexTable.Delete(hs.localIndex)
hs.Clear()
hs.mutex.Unlock()