Skip to content

Commit

Permalink
NuGet v3.0.14, LocalEndpoint in client, thank you @huangjia2107!
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristn committed Jan 16, 2024
1 parent 73879c0 commit 2a26a5c
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion src/SuperSimpleTcp/SimpleTcp.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions src/SuperSimpleTcp/SimpleTcpClientSettings.cs
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,17 @@ public class SimpleTcpClientSettings
#region Public-Members

/// <summary>
/// The System.Net.IPEndPoint to which you bind the TCP System.Net.Sockets.Socket
/// The System.Net.IPEndPoint to which you bind the TCP System.Net.Sockets.Socket.
/// </summary>
public IPEndPoint LocalEndpoint
{
get
{
return _LocaleEndpoint;
return _localEndpoint;
}
set
{
_LocaleEndpoint = value;
_localEndpoint = value;
}
}

Expand Down Expand Up @@ -173,7 +173,7 @@ public int ConnectionLostEvaluationIntervalMs

#region Private-Members

private IPEndPoint _LocaleEndpoint = null;
private IPEndPoint _localEndpoint = null;
private bool _noDelay = true;
private int _streamBufferSize = 65536;
private int _connectTimeoutMs = 5000;
Expand Down
6 changes: 3 additions & 3 deletions src/SuperSimpleTcp/SuperSimpleTcp.csproj
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<Project Sdk="Microsoft.NET.Sdk">

<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;netstandard2.1;net461;net48;net6.0;net7.0</TargetFrameworks>
<TargetFrameworks>netstandard2.1;net461;net462;net48;net6.0;net7.0;net8.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.0.13</Version>
<Version>3.0.14</Version>
<PackageReleaseNotes>Await fix, thank you @olifer</PackageReleaseNotes>
<Authors>Joel Christner</Authors>
<Description>Simple wrapper for TCP client and server in C# with SSL support</Description>
<Copyright>(c)2023 Joel Christner</Copyright>
<Copyright>(c)2024 Joel Christner</Copyright>
<PackageLicenseUrl></PackageLicenseUrl>
<PackageProjectUrl>https://github.com/jchristn/supersimpletcp</PackageProjectUrl>
<RepositoryUrl>https://github.com/jchristn/supersimpletcp</RepositoryUrl>
Expand Down

0 comments on commit 2a26a5c

Please sign in to comment.