mirror of
https://github.com/netbirdio/netbird.git
synced 2024-12-15 19:31:06 +01:00
bca8944e7a
- handle the same AlPN list - use dev build tag for debugging purposes
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},
|
|
}
|
|
}
|