We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 66d72b3 commit 81e3f3fCopy full SHA for 81e3f3f
2 files changed
CHANGELOG.md
@@ -8,6 +8,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
8
### Added
9
- ConnectTimeout property.
10
11
+### Changed
12
+- Disabled Nagle's algorithm.
13
+
14
## [2.0.1] - 2022-10-11
15
16
- ExceptionCode enum.
PL.Modbus/NetworkStream.cs
@@ -60,6 +60,7 @@ public override void Open()
60
_tcpClient = new();
61
if (!_tcpClient.ConnectAsync(_ipAddress, _port).Wait(ConnectTimeout))
62
throw new SocketException(10060);
63
+ _tcpClient.NoDelay = true;
64
}
65
66
0 commit comments