1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
|
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.
// Generated from ../../../cs/src/Contracts/TunnelConnectionMode.cs
package tunnels
// Specifies the connection protocol / implementation for a tunnel.
//
// Depending on the connection mode, hosts or clients might need to use different
// authentication and connection protocols.
type TunnelConnectionMode string
const (
// Connect directly to the host over the local network.
//
// While it's technically not "tunneling", this mode may be combined with others to
// enable choosing the most efficient connection mode available.
TunnelConnectionModeLocalNetwork TunnelConnectionMode = "LocalNetwork"
// Use the tunnel service's integrated relay function.
TunnelConnectionModeTunnelRelay TunnelConnectionMode = "TunnelRelay"
)
|