Reworked TcpListener

Fixed the TCP listener to keep reading until a newline.
This commit is contained in:
Eric Fontana
2014-08-07 11:01:57 -04:00
parent 28d45a9e99
commit 9b85c00293
7 changed files with 166 additions and 49 deletions

View File

@@ -36,7 +36,8 @@ namespace TimberWinR.ServiceHost
});
hostConfigurator.AddCommandLineDefinition("configFile", c => arguments.ConfigFile = c);
hostConfigurator.AddCommandLineDefinition("logLevel", c => arguments.LogLevel = c);
hostConfigurator.AddCommandLineDefinition("logLevel", c => arguments.LogLevel = c);
hostConfigurator.AddCommandLineDefinition("logDir", c => arguments.LogfileDir = c);
hostConfigurator.ApplyCommandLine();
hostConfigurator.RunAsLocalSystem();