Fix #595 - Start using GO 1.12

This commit is contained in:
Aleksey Dmitrevskiy
2019-02-26 15:32:56 +03:00
parent 71ab95f12f
commit 2dc2a0946a
4 changed files with 17 additions and 4 deletions

11
app.go
View File

@@ -71,6 +71,9 @@ func run(args options) {
// configure log level and output
configureLogger(args)
// enable TLS 1.3
enableTLS13()
// print the first message after logger is configured
log.Printf("AdGuard Home, version %s\n", VersionString)
log.Tracef("Current working directory is %s", config.ourWorkingDir)
@@ -291,6 +294,14 @@ func configureLogger(args options) {
}
}
// TODO after GO 1.13 release TLS 1.3 will be enabled by default. Remove this afterward
func enableTLS13() {
err := os.Setenv("GODEBUG", os.Getenv("GODEBUG")+",tls13=1")
if err != nil {
log.Fatalf("Failed to enable TLS 1.3: %s", err)
}
}
func cleanup() {
log.Printf("Stopping AdGuard Home")