mirror of
https://github.com/netbirdio/netbird.git
synced 2025-07-15 05:45:42 +02: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},
|
|
}
|
|
}
|