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

device: make initiations per second match kernel implementation

This commit is contained in:
Jason A. Donenfeld 2019-05-25 02:07:18 +02:00
parent f70546bc2e
commit e7e286ba6c

View File

@ -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
)