aboutsummaryrefslogtreecommitdiffstats
path: root/src/peer.go
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2017-08-14 17:09:25 +0200
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2017-08-14 17:09:25 +0200
commit12e8db20662191baa8c7253804f1340d7e4d8a87 (patch)
tree700891f3e26e1eed8f2fd087151d79090b2848c7 /src/peer.go
parentImproved receive.go (diff)
downloadwireguard-go-12e8db20662191baa8c7253804f1340d7e4d8a87.tar.xz
wireguard-go-12e8db20662191baa8c7253804f1340d7e4d8a87.zip
Improved cookie/mac computation code
Diffstat (limited to '')
-rw-r--r--src/peer.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/peer.go b/src/peer.go
index 02aac3b..a4feb2f 100644
--- a/src/peer.go
+++ b/src/peer.go
@@ -56,7 +56,7 @@ type Peer struct {
outbound chan *QueueOutboundElement // sequential ordering of work
inbound chan *QueueInboundElement // sequential ordering of work
}
- mac MACStatePeer
+ mac CookieGenerator
}
func (device *Device) NewPeer(pk NoisePublicKey) (*Peer, error) {