TUN-4421: Named Tunnels will automatically select the protocol to connect to Cloudflare's edge network
This commit is contained in:
parent
103b2eca00
commit
6526211a69
|
@ -1,5 +1,9 @@
|
||||||
**Experimental**: This is a new format for release notes. The format and availability is subject to change.
|
**Experimental**: This is a new format for release notes. The format and availability is subject to change.
|
||||||
|
|
||||||
|
## 2021.5.7
|
||||||
|
### New Features
|
||||||
|
- Named Tunnels will automatically select the protocol to connect to Cloudflare's edge network.
|
||||||
|
|
||||||
## 2021.5.0
|
## 2021.5.0
|
||||||
|
|
||||||
### New Features
|
### New Features
|
||||||
|
|
|
@ -110,7 +110,7 @@ var (
|
||||||
}
|
}
|
||||||
selectProtocolFlag = altsrc.NewStringFlag(&cli.StringFlag{
|
selectProtocolFlag = altsrc.NewStringFlag(&cli.StringFlag{
|
||||||
Name: "protocol",
|
Name: "protocol",
|
||||||
Value: "h2mux",
|
Value: "auto",
|
||||||
Aliases: []string{"p"},
|
Aliases: []string{"p"},
|
||||||
Usage: fmt.Sprintf("Protocol implementation to connect with Cloudflare's edge network. %s", connection.AvailableProtocolFlagMessage),
|
Usage: fmt.Sprintf("Protocol implementation to connect with Cloudflare's edge network. %s", connection.AvailableProtocolFlagMessage),
|
||||||
EnvVars: []string{"TUNNEL_TRANSPORT_PROTOCOL"},
|
EnvVars: []string{"TUNNEL_TRANSPORT_PROTOCOL"},
|
||||||
|
|
Loading…
Reference in New Issue