Remove extra Start call for standalone operation.

This commit is contained in:
Eric Fontana
2015-04-08 08:49:55 -04:00
parent 4e5af689f6
commit e8a54782e4
2 changed files with 5 additions and 5 deletions

View File

@@ -38,8 +38,7 @@ namespace TimberWinR.Inputs
{
_port = port;
LogManager.GetCurrentClassLogger().Info("Udp Input on Port {0} Ready", _port);
_receivedMessages = 0;
_listenThreadV6 = new Thread(StartListener);
@@ -74,7 +73,9 @@ namespace TimberWinR.Inputs
dualModeSocket.Bind(groupV6);
_udpListenerV6 = new UdpClient();
_udpListenerV6.Client = dualModeSocket;
_udpListenerV6.Client = dualModeSocket;
LogManager.GetCurrentClassLogger().Info("Udp Input on Port {0} Ready", groupV6);
string lastMessage = "";
try

View File

@@ -152,8 +152,7 @@ namespace TimberWinR
if (processConfiguration)
{
ProcessConfiguration(cancelToken, Config);
Start(cancelToken);
ProcessConfiguration(cancelToken, Config);
}
}