Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cs/src/Contracts/TunnelServiceProperties.cs
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ public class TunnelServiceProperties
/// <summary>
/// Default host name for the local tunnel service.
/// </summary>
internal const string LocalDnsName = "tunnels.local.api.visualstudio.com:9901";
internal const string LocalDnsName = "global.tunnels.local.api.visualstudio.com";

/// <summary>
/// First-party app ID: `Visual Studio Tunnel Service`
Expand Down
2 changes: 1 addition & 1 deletion go/tunnels/tunnel_service_properties.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ var ppeDnsName = "global.rel.tunnels.ppe.api.visualstudio.com"
var devDnsName = "global.ci.tunnels.dev.api.visualstudio.com"

// Default host name for the local tunnel service.
var localDnsName = "tunnels.local.api.visualstudio.com:9901"
var localDnsName = "global.tunnels.local.api.visualstudio.com"

// First-party app ID: `Visual Studio Tunnel Service`
//
Expand Down
2 changes: 1 addition & 1 deletion go/tunnels/tunnels.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"github.com/rodaine/table"
)

const PackageVersion = "0.1.25"
const PackageVersion = "0.1.26"

func (tunnel *Tunnel) requestObject() (*Tunnel, error) {
convertedTunnel := &Tunnel{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ public class TunnelServiceProperties {
/**
* Default host name for the local tunnel service.
*/
static final String localDnsName = "tunnels.local.api.visualstudio.com:9901";
static final String localDnsName = "global.tunnels.local.api.visualstudio.com";

/**
* First-party app ID: `Visual Studio Tunnel Service`
Expand Down
2 changes: 1 addition & 1 deletion rs/src/contracts/tunnel_service_properties.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ pub const PPE_DNS_NAME: &str = "global.rel.tunnels.ppe.api.visualstudio.com";
pub const DEV_DNS_NAME: &str = "global.ci.tunnels.dev.api.visualstudio.com";

// Default host name for the local tunnel service.
pub const LOCAL_DNS_NAME: &str = "tunnels.local.api.visualstudio.com:9901";
pub const LOCAL_DNS_NAME: &str = "global.tunnels.local.api.visualstudio.com";

// First-party app ID: `Visual Studio Tunnel Service`
//
Expand Down
2 changes: 1 addition & 1 deletion ts/src/contracts/tunnelServiceProperties.ts
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ export const devDnsName = 'global.ci.tunnels.dev.api.visualstudio.com';
/**
* Default host name for the local tunnel service.
*/
export const localDnsName = 'tunnels.local.api.visualstudio.com:9901';
export const localDnsName = 'global.tunnels.local.api.visualstudio.com';

/**
* First-party app ID: `Visual Studio Tunnel Service`
Expand Down
Loading