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-08-07 15:25:04 +02:00
|
|
|
RekeyAfterMessages = (1 << 64) - (1 << 16) - 1
|
|
|
|
RejectAfterMessages = (1 << 64) - (1 << 4) - 1
|
|
|
|
RekeyAfterTime = time.Second * 120
|
|
|
|
RekeyAttemptTime = time.Second * 90
|
|
|
|
RekeyTimeout = time.Second * 5
|
|
|
|
RejectAfterTime = time.Second * 180
|
|
|
|
KeepaliveTimeout = time.Second * 10
|
|
|
|
CookieRefreshTime = time.Second * 120
|
|
|
|
PaddingMultiple = 16
|
2017-06-28 23:45:45 +02:00
|
|
|
)
|
|
|
|
|
2017-07-08 23:51:26 +02:00
|
|
|
const (
|
|
|
|
RekeyAfterTimeReceiving = RekeyAfterTime - KeepaliveTimeout - RekeyTimeout
|
2017-07-27 23:45:37 +02:00
|
|
|
NewHandshakeTime = KeepaliveTimeout + RekeyTimeout // upon failure to acknowledge transport message
|
2017-07-08 23:51:26 +02:00
|
|
|
)
|
|
|
|
|
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
|
2017-08-04 16:15:53 +02:00
|
|
|
MaxMessageSize = ((1 << 16) - 1) + MessageTransportHeaderSize
|
2017-08-07 15:25:04 +02:00
|
|
|
MaxPeers = 1 << 16
|
2017-06-27 17:33:06 +02:00
|
|
|
)
|