netbird/relay/tls/client_prod.go

12 lines
154 B
Go
Raw Normal View History

2024-12-02 10:33:00 +01:00
//go:build !devcert
package tls
import "crypto/tls"
func ClientQUICTLSConfig() *tls.Config {
return &tls.Config{
NextProtos: []string{nbalpn},
}
}