Files
wireguard-go/src/constants.go
T

35 lines
880 B
Go
Raw Normal View History

2017-06-27 17:33:06 +02:00
package main
import (
"time"
)
2017-07-11 22:48:58 +02:00
/* Specification constants */
2017-06-27 17:33:06 +02:00
const (
2017-06-30 14:41:08 +02:00
RekeyAfterMessages = (1 << 64) - (1 << 16) - 1
2017-07-11 22:48:58 +02:00
RejectAfterMessages = (1 << 64) - (1 << 4) - 1
2017-06-30 14:41:08 +02:00
RekeyAfterTime = time.Second * 120
RekeyAttemptTime = time.Second * 90
2017-07-11 22:48:58 +02:00
RekeyTimeout = time.Second * 5
2017-06-30 14:41:08 +02:00
RejectAfterTime = time.Second * 180
KeepaliveTimeout = time.Second * 10
2017-07-11 22:48:58 +02:00
CookieRefreshTime = time.Second * 120
2017-06-30 14:41:08 +02:00
MaxHandshakeAttemptTime = time.Second * 90
2017-06-28 23:45:45 +02:00
)
2017-07-08 23:51:26 +02:00
const (
RekeyAfterTimeReceiving = RekeyAfterTime - KeepaliveTimeout - RekeyTimeout
)
2017-07-11 22:48:58 +02:00
/* Implementation specific constants */
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-13 14:32:40 +02:00
MinMessageSize = MessageTransportSize // size of keep-alive
MaxMessageSize = (1 << 16) - 1
2017-06-27 17:33:06 +02:00
)