You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This commit was created on GitHub.com and signed with GitHub’s verified signature.
The key has expired.
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.