From e7e286ba6cf7a952279d5007f71c7d38cb510610 Mon Sep 17 00:00:00 2001 From: "Jason A. Donenfeld" Date: Sat, 25 May 2019 02:07:18 +0200 Subject: [PATCH] device: make initiations per second match kernel implementation --- device/constants.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/device/constants.go b/device/constants.go index 27d910f..e316f32 100644 --- a/device/constants.go +++ b/device/constants.go @@ -22,7 +22,7 @@ const ( RejectAfterTime = time.Second * 180 KeepaliveTimeout = time.Second * 10 CookieRefreshTime = time.Second * 120 - HandshakeInitationRate = time.Second / 20 + HandshakeInitationRate = time.Second / 50 PaddingMultiple = 16 )