update nugets & cleanup

This commit is contained in:
2023-11-21 08:56:03 +01:00
parent e358b0e419
commit 066d5a1a81
50 changed files with 79 additions and 1230 deletions

View File

@@ -116,7 +116,10 @@ Public MustInherit Class ConnectionManagerBase
Dim send = Sub() SendData(ep, finalBuffer.ToArray)
Dim addInteger =
Sub(value As Integer)
finalBuffer.AddRange({(value >> 24) And &HFF, (value >> 16) And &HFF, (value >> 8) And &HFF, value And &HFF})
finalBuffer.Add((value >> 24) And &HFF)
finalBuffer.Add((value >> 16) And &HFF)
finalBuffer.Add((value >> 8) And &HFF)
finalBuffer.Add(value And &HFF)
End Sub
Dim addHeader =
Sub(packageID As Integer, packagesCount As Integer)