Skip to content

Commit 9ff139b

Browse files
committed
fix: update TcpIpServer case to TcpServer in CreateCommForDevice method
1 parent 563de96 commit 9ff139b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PepperDash.Essentials.Core/Comm and IR/CommFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ public static IBasicCommunication CreateCommForDevice(DeviceConfig deviceConfig)
104104
comm = secureTcp;
105105
break;
106106
}
107-
case eControlMethod.TcpIpServer:
107+
case eControlMethod.TcpServer:
108108
{
109109
var tcpServer = new GenericTcpIpServer(deviceConfig.Key + "-tcpServer", c.Address, c.Port, c.BufferSize);
110110
comm = tcpServer;

0 commit comments

Comments
 (0)