aboutsummaryrefslogtreecommitdiffstats
path: root/src/timers.go
diff options
context:
space:
mode:
authorMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-18 15:22:56 +0200
committerMathias Hall-Andersen <mathias@hall-andersen.dk>2017-07-18 15:22:56 +0200
commit18714fc4a444f3369dc9ca25e5a6e50343770ea4 (patch)
tree2f517973541ac510895a878c5dd9dff86927d947 /src/timers.go
parentFixed file descriptor leak on linux (diff)
downloadwireguard-go-18714fc4a444f3369dc9ca25e5a6e50343770ea4.tar.xz
wireguard-go-18714fc4a444f3369dc9ca25e5a6e50343770ea4.zip
Added last_handshake_time fields to UAPI
Diffstat (limited to 'src/timers.go')
-rw-r--r--src/timers.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/timers.go b/src/timers.go
index fd2bdc3..2454414 100644
--- a/src/timers.go
+++ b/src/timers.go
@@ -52,6 +52,10 @@ func (peer *Peer) KeepKeyFreshReceiving() {
func (peer *Peer) EventHandshakeComplete() {
peer.device.log.Info.Println("Negotiated new handshake for", peer.String())
peer.timer.zeroAllKeys.Reset(RejectAfterTime * 3)
+ atomic.StoreInt64(
+ &peer.stats.lastHandshakeNano,
+ time.Now().UnixNano(),
+ )
signalSend(peer.signal.handshakeCompleted)
}