Files
wireguard-go/src/constants.go
T

27 lines
731 B
Go
Raw Normal View History

2017-06-27 17:33:06 +02:00
package main
import (
"time"
)
const (
2017-06-30 14:41:08 +02:00
RekeyAfterMessages = (1 << 64) - (1 << 16) - 1
RekeyAfterTime = time.Second * 120
RekeyAttemptTime = time.Second * 90
RekeyTimeout = time.Second * 5 // TODO: Exponential backoff
RejectAfterTime = time.Second * 180
RejectAfterMessages = (1 << 64) - (1 << 4) - 1
KeepaliveTimeout = time.Second * 10
2017-07-07 13:47:09 +02:00
CookieRefreshTime = time.Minute * 2
2017-06-30 14:41:08 +02:00
MaxHandshakeAttemptTime = time.Second * 90
2017-06-28 23:45:45 +02:00
)
const (
2017-07-01 23:29:22 +02:00
QueueOutboundSize = 1024
QueueInboundSize = 1024
QueueHandshakeSize = 1024
QueueHandshakeBusySize = QueueHandshakeSize / 8
2017-07-06 15:43:55 +02:00
MinMessageSize = MessageTransportSize // keep-alive
MaxMessageSize = 4096
2017-06-27 17:33:06 +02:00
)