Browse Source

SMBServer: Include NT FileSystem Adapter events in the log

Tal Aloni 7 years atrás
parent
commit
37d3141180
1 changed files with 8 additions and 0 deletions
  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);