mirror of
https://github.com/netbirdio/netbird.git
synced 2025-03-06 10:51:18 +01:00
12 lines
150 B
Go
12 lines
150 B
Go
//go:build !dev
|
|
|
|
package tls
|
|
|
|
import "crypto/tls"
|
|
|
|
func ClientQUICTLSConfig() *tls.Config {
|
|
return &tls.Config{
|
|
NextProtos: []string{nbalpn},
|
|
}
|
|
}
|