Explorar o código

SMBServer: Include NT FileSystem Adapter events in the log

Tal Aloni %!s(int64=7) %!d(string=hai) anos
pai
achega
37d3141180
Modificáronse 1 ficheiros con 8 adicións e 0 borrados
  1. 8 0
      SMBServer/ServerUI.cs

+ 8 - 0
SMBServer/ServerUI.cs

@@ -101,6 +101,14 @@ namespace SMBServer
             m_logWriter = new LogWriter();
             m_server.LogEntryAdded += new EventHandler<LogEntry>(m_logWriter.OnLogEntryAdded);
 
+            foreach (FileSystemShare share in shares)
+            {
+                if (share.FileStore is NTFileSystemAdapter)
+                {
+                    ((NTFileSystemAdapter)share.FileStore).LogEntryAdded += new EventHandler<LogEntry>(m_logWriter.OnLogEntryAdded);
+                }
+            }
+
             try
             {
                 m_server.Start(serverAddress, transportType, chkSMB1.Checked, chkSMB2.Checked);