Browse Source

Moved SMBDialect to a separate class

Tal Aloni 8 years ago
parent
commit
cef7a6dc29

+ 1 - 0
SMBLibrary/SMBLibrary.csproj

@@ -191,6 +191,7 @@
     <Compile Include="Server\ConnectionState\SMB1Session.cs" />
     <Compile Include="Server\ConnectionState\SMB2ConnectionState.cs" />
     <Compile Include="Server\ConnectionState\SMB2Session.cs" />
+    <Compile Include="Server\Enums\SMBDialect.cs" />
     <Compile Include="Server\Helpers\ServerPathUtils.cs" />
     <Compile Include="Server\NameServer.cs" />
     <Compile Include="Server\Shares\FileSystemShare.cs" />

+ 0 - 8
SMBLibrary/Server/ConnectionState/ConnectionState.cs

@@ -15,14 +15,6 @@ namespace SMBLibrary.Server
 {
     public delegate void LogDelegate(Severity severity, string message);
 
-    public enum SMBDialect
-    {
-        NotSet,
-        NTLM012, // NT LM 0.12
-        SMB202,  // SMB 2.0.2
-        SMB210,  // SMB 2.1
-    }
-
     public class ConnectionState
     {
         public Socket ClientSocket;

+ 11 - 0
SMBLibrary/Server/Enums/SMBDialect.cs

@@ -0,0 +1,11 @@
+
+namespace SMBLibrary.Server
+{
+    public enum SMBDialect
+    {
+        NotSet,
+        NTLM012, // NT LM 0.12
+        SMB202,  // SMB 2.0.2
+        SMB210,  // SMB 2.1
+    }
+}