mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 03:11:02 +01:00
12 lines
154 B
Go
12 lines
154 B
Go
//go:build !devcert
|
|
|
|
package tls
|
|
|
|
import "crypto/tls"
|
|
|
|
func ClientQUICTLSConfig() *tls.Config {
|
|
return &tls.Config{
|
|
NextProtos: []string{nbalpn},
|
|
}
|
|
}
|