Skip to content

v2.3.0

Compare
Choose a tag to compare
@Apollo3zehn Apollo3zehn released this 06 Nov 14:59
· 195 commits to master since this release
a9478dd

Features

  • The Modbus TCP Server got a new constructor which allows providing your own TcpClient. The other constructors start a TcpListener which accepts multiple clients with default configuration.
  • The access modifier of ProcessRequests() has been made accessible for subclassing (private protected -> protected).

Changes

  • Modified the signature of many methods to accept integers instead of byte or ushort to avoid frequent casting from int to the target type. This is not considered to be a breaking change since byte and ushort can be casted to int implicitly.

Bugs Fixed

  • The server allowed one more client to connect than defined in server.MaxConnections.