Skip to content

Commit

Permalink
Update calls with new ssh params
Browse files Browse the repository at this point in the history
  • Loading branch information
jfullerton44 committed Jul 17, 2023
1 parent d8443f9 commit 8d46e43
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions cs/src/Connections/TunnelClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ protected virtual void OnForwardedPortConnecting(
var secureStream = new SecureStream(
e.Stream,
clientCredentials,
false,
channel.Trace.WithName(channel.Trace.Name + "." + channel.ChannelId));
secureStream.Authenticating += OnHostAuthenticating;

Expand Down
1 change: 1 addition & 0 deletions cs/src/Connections/TunnelRelayTunnelHost.cs
Original file line number Diff line number Diff line change
Expand Up @@ -373,6 +373,7 @@ protected override void OnForwardedPortConnecting(
var secureStream = new SecureStream(
e.Stream,
serverCredentials,
null,
channel.Trace.WithName(channel.Trace.Name + "." + channel.ChannelId));

// The client was already authenticated by the relay.
Expand Down

0 comments on commit 8d46e43

Please sign in to comment.