1
0
mirror of https://git.zx2c4.com/wireguard-go synced 2024-11-15 01:05:15 +01:00

Fix timer typo

This commit is contained in:
Jason A. Donenfeld 2018-02-18 20:58:43 +01:00
parent 9de17e6c9c
commit 519c5d200a

View File

@ -20,7 +20,7 @@ const (
)
const (
RekeyAfterTimeReceiving = RekeyAfterTime - KeepaliveTimeout - RekeyTimeout
RekeyAfterTimeReceiving = RejectAfterTime - KeepaliveTimeout - RekeyTimeout
NewHandshakeTime = KeepaliveTimeout + RekeyTimeout // upon failure to acknowledge transport message
)