Skip to content

Commit

Permalink
Fix method calls, bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
nauful committed Feb 29, 2024
1 parent 9cf8e22 commit 0f53bfa
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion NET Core/LibUA/LibUA.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
<Title>LibUA Core</Title>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/nauful/libua</RepositoryUrl>
<Version>1.0.18</Version>
<Version>1.0.19</Version>
<PackageReadmeFile>README.md</PackageReadmeFile>
<PackageLicenseFile>LICENSE</PackageLicenseFile>
</PropertyGroup>
Expand Down
2 changes: 0 additions & 2 deletions NET/LibUA/NetDispatcher.cs
Original file line number Diff line number Diff line change
Expand Up @@ -2626,8 +2626,6 @@ protected int DispatchMessage_TranslateBrowsePathsToNodeIdsRequest(SLChannel con

protected int DispatchMessage_CallRequest(SLChannel config, RequestHeader reqHeader, MemoryBuffer recvBuf, uint messageSize)
{
// TODO: Verify

if (!recvBuf.Decode(out uint NoofMethodsToCall)) { return ErrorParseFail; }
var reqs = new CallMethodRequest[NoofMethodsToCall];
for (uint i = 0; i < NoofMethodsToCall; i++)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# LibUA
Open-source OPC UA client and server library for .NET Framework and .NET Core based on IEC 62541. Available a library, a demo client and a demo server. Tested and commercially used in industrial applications with commercial vendors' UA servers and clients.

Available as a nuget package for .NET Core (1.0.18):
Available as a nuget package for .NET Core (1.0.19):
https://www.nuget.org/packages/nauful-LibUA-core

### Features
Expand Down

0 comments on commit 0f53bfa

Please sign in to comment.