Skip to content
This repository has been archived by the owner on Feb 19, 2023. It is now read-only.

Commit

Permalink
fix: correct _expectResponse
Browse files Browse the repository at this point in the history
  • Loading branch information
CCXXXI committed Jul 13, 2022
1 parent aa8f907 commit 3d05073
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion TcpClient.vb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ Public Class TcpClient
ReadOnly _readCmd As Byte() = New Byte() {&HFE, &H2, &H0, &H0, &H0, &H8, &H6D, &HC3}
Const YesCode As Byte = &H1
ReadOnly _report As Byte() = New Byte() {&HFE, &H5, &H0, &H0, &HFF, &H0, &H98, &H35}
ReadOnly _expectResponse As Byte() = New Byte() {&HFE, &H5, &H0, &H0, &HFF, &H0, &H98, &H35}
ReadOnly _expectResponse As Byte() = New Byte() {&HFE, &H5, &H0, &H0, &HFF, &H0, &H98, &H35, &H0}

ReadOnly _tcpClient As New Net.Sockets.TcpClient()
Dim _networkStream As NetworkStream
Expand Down

0 comments on commit 3d05073

Please sign in to comment.