mirror of
https://github.com/netbirdio/netbird.git
synced 2025-03-05 02:11:13 +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},
|
||
|
}
|
||
|
}
|