Browse Source
Merge pull request #1 from GavinYellow/master
fix a bug in daservice
pull/16/head
Cookie Tang
8 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
SCADA/Program/BatchCoreService/DAService.cs
|
|
|
@ -1446,7 +1446,7 @@ namespace BatchCoreService |
|
|
|
sendBuffer[4] = dt1[1]; |
|
|
|
SocketError err; |
|
|
|
//bytes.CopyTo(bytes2, 0);
|
|
|
|
List<Socket> sockets = new List<Socket>(_socketThreadList.Count); |
|
|
|
List<Socket> sockets = new List<Socket>(); |
|
|
|
foreach (var socket in _socketThreadList) |
|
|
|
{ |
|
|
|
if (!socket.Key.Equals(tempdata.Address)) |
|
|
|
|