dnscrypt-proxy/dnscrypt-proxy/common.go

44 lines
752 B
Go
Raw Normal View History

package main
import (
"time"
)
type CryptoConstruction uint16
const (
UndefinedConstruction CryptoConstruction = iota
XSalsa20Poly1305
XChacha20Poly1305
)
var (
CertMagic = [4]byte{0x44, 0x4e, 0x53, 0x43}
ServerMagic = [8]byte{0x72, 0x36, 0x66, 0x6e, 0x76, 0x57, 0x6a, 0x38}
2018-01-09 13:27:03 +01:00
MinDNSPacketSize = 12
MaxDNSPacketSize = 4096
2018-01-09 16:40:37 +01:00
MaxDNSUDPPacketSize = 1252
InitialMinQuestionSize = 256
TimeoutMin = 1 * time.Second
TimeoutMax = 5 * time.Second
CertRefreshDelay = 30 * time.Minute
)
func HasTCFlag(packet []byte) bool {
return packet[2]&2 == 2
}
2018-01-09 16:40:37 +01:00
func Min(a, b int) int {
if a < b {
return a
}
return b
}
func Max(a, b int) int {
if a > b {
return a
}
return b
}