Skip to content

Commit

Permalink
ssh package version change (#279)
Browse files Browse the repository at this point in the history
* ssh package version change

* there is a new version 3.11.13

* update ts version as well

* cr fix

* run npm install in .ts file to update package-lock.json

* npm install changes

* Update calls with new ssh params

---------

Co-authored-by: Jake Fullerton <[email protected]>
  • Loading branch information
setaskin and jfullerton44 authored Jul 17, 2023
1 parent 4780062 commit a74d230
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 3,754 deletions.
2 changes: 1 addition & 1 deletion cs/build/build.props
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
<ReportGeneratorVersion>4.8.13</ReportGeneratorVersion>
<SystemTextEncodingsWebPackageVersion>4.7.2</SystemTextEncodingsWebPackageVersion>
<VisualStudioValidationVersion>15.5.31</VisualStudioValidationVersion>
<DevTunnelsSshPackageVersion>3.11.11</DevTunnelsSshPackageVersion>
<DevTunnelsSshPackageVersion>3.11.13</DevTunnelsSshPackageVersion>
<XunitRunnerVisualStudioVersion>2.4.0</XunitRunnerVisualStudioVersion>
<XunitVersion>2.4.0</XunitVersion>
</PropertyGroup>
Expand Down
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
Loading

0 comments on commit a74d230

Please sign in to comment.