update nugets & cleanup
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user