diff --git a/src/SuperSimpleTcp/SimpleTcp.xml b/src/SuperSimpleTcp/SimpleTcp.xml
index 3e670a0..cece589 100644
--- a/src/SuperSimpleTcp/SimpleTcp.xml
+++ b/src/SuperSimpleTcp/SimpleTcp.xml
@@ -355,7 +355,7 @@
- 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.
diff --git a/src/SuperSimpleTcp/SimpleTcpClientSettings.cs b/src/SuperSimpleTcp/SimpleTcpClientSettings.cs
index 6bc8c0a..8c1f34b 100644
--- a/src/SuperSimpleTcp/SimpleTcpClientSettings.cs
+++ b/src/SuperSimpleTcp/SimpleTcpClientSettings.cs
@@ -12,17 +12,17 @@ public class SimpleTcpClientSettings
#region Public-Members
///
- /// 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.
///
public IPEndPoint LocalEndpoint
{
get
{
- return _LocaleEndpoint;
+ return _localEndpoint;
}
set
{
- _LocaleEndpoint = value;
+ _localEndpoint = value;
}
}
@@ -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;
diff --git a/src/SuperSimpleTcp/SuperSimpleTcp.csproj b/src/SuperSimpleTcp/SuperSimpleTcp.csproj
index f93e51a..c95b1ff 100644
--- a/src/SuperSimpleTcp/SuperSimpleTcp.csproj
+++ b/src/SuperSimpleTcp/SuperSimpleTcp.csproj
@@ -1,13 +1,13 @@
- netcoreapp3.1;netstandard2.1;net461;net48;net6.0;net7.0
+ netstandard2.1;net461;net462;net48;net6.0;net7.0;net8.0
true
- 3.0.13
+ 3.0.14
Await fix, thank you @olifer
Joel Christner
Simple wrapper for TCP client and server in C# with SSL support
- (c)2023 Joel Christner
+ (c)2024 Joel Christner
https://github.com/jchristn/supersimpletcp
https://github.com/jchristn/supersimpletcp