Skip to content

Commit

Permalink
NuGet v3.0.12, merge @BrandenEK
Browse files Browse the repository at this point in the history
  • Loading branch information
jchristn committed Jul 13, 2023
1 parent 1c399d0 commit 1872d74
Show file tree
Hide file tree
Showing 4 changed files with 35 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ A special thanks to the community of people that have contributed to or otherwis
@tinohager @u1035 @cmeeren @pha3z @opnop @kopkarmecoindo @simonhaines @matt1tk @lukeacat
@exergist @maynardsi @sector13371 @loganwoodxyz @jwfxpr @IanPNewson @EGirardi @redrabbit007
@eatyouroats @joreg @CetinOzdil @tautvilis @ATS-CE @TheNybbler @huangjia2107 @zllvm
@Energiz0r @Espen-Kalhagen-Element-Logic @MarkBreedveld @QTPah @olifer @KimEoJin
@Energiz0r @Espen-Kalhagen-Element-Logic @MarkBreedveld @QTPah @olifer @KimEoJin @BrandenEK

## Help or Feedback

Expand Down
12 changes: 11 additions & 1 deletion src/SuperSimpleTcp/SimpleTcp.xml

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

23 changes: 22 additions & 1 deletion src/SuperSimpleTcp/SimpleTcpServer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,28 @@ public int Connections
}

/// <summary>
/// The port that the server is running on
/// The IP address on which the server is configured to listen.
/// </summary>
public IPAddress IpAddress
{
get
{
return _ipAddress;
}
}

/// <summary>
/// The IPEndPoint on which the server is configured to listen.
/// </summary>
public EndPoint Endpoint
{
get
{
return _listener == null ? null : ((IPEndPoint)_listener.LocalEndpoint);
}
}
/// <summary>
/// The port on which the server is configured to listen.
/// </summary>
public int Port
{
Expand Down
2 changes: 1 addition & 1 deletion src/SuperSimpleTcp/SuperSimpleTcp.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;netstandard2.1;net461;net48;net6.0;net7.0</TargetFrameworks>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Version>3.0.11</Version>
<Version>3.0.12</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>
Expand Down

0 comments on commit 1872d74

Please sign in to comment.