Browse Source

Renamed ShareCollection to SMBShareCollection

Tal Aloni 8 years ago
parent
commit
82f308b576

+ 1 - 1
SMBLibrary/SMBLibrary.csproj

@@ -199,7 +199,7 @@
     <Compile Include="Server\Shares\FileSystemShare.cs" />
     <Compile Include="Server\Shares\ISMBShare.cs" />
     <Compile Include="Server\Shares\NamedPipeShare.cs" />
-    <Compile Include="Server\Shares\ShareCollection.cs" />
+    <Compile Include="Server\Shares\SMBShareCollection.cs" />
     <Compile Include="Server\SMB1\FileStoreResponseHelper.cs" />
     <Compile Include="Server\SMB1\NegotiateHelper.cs" />
     <Compile Include="Server\SMB1\NTCreateHelper.cs" />

+ 1 - 1
SMBLibrary/Server/SMB1/TreeConnectHelper.cs

@@ -14,7 +14,7 @@ namespace SMBLibrary.Server.SMB1
 {
     internal class TreeConnectHelper
     {
-        internal static SMB1Command GetTreeConnectResponse(SMB1Header header, TreeConnectAndXRequest request, SMB1ConnectionState state, NamedPipeShare services, ShareCollection shares)
+        internal static SMB1Command GetTreeConnectResponse(SMB1Header header, TreeConnectAndXRequest request, SMB1ConnectionState state, NamedPipeShare services, SMBShareCollection shares)
         {
             SMB1Session session = state.GetSession(header.UID);
             bool isExtended = (request.Flags & TreeConnectFlags.ExtendedResponse) > 0;

+ 1 - 1
SMBLibrary/Server/SMB2/TreeConnectHelper.cs

@@ -14,7 +14,7 @@ namespace SMBLibrary.Server.SMB2
 {
     internal class TreeConnectHelper
     {
-        internal static SMB2Command GetTreeConnectResponse(TreeConnectRequest request, SMB2ConnectionState state, NamedPipeShare services, ShareCollection shares)
+        internal static SMB2Command GetTreeConnectResponse(TreeConnectRequest request, SMB2ConnectionState state, NamedPipeShare services, SMBShareCollection shares)
         {
             SMB2Session session = state.GetSession(request.Header.SessionID);
             TreeConnectResponse response = new TreeConnectResponse();

+ 2 - 2
SMBLibrary/Server/SMBServer.cs

@@ -25,7 +25,7 @@ namespace SMBLibrary.Server
         public const string NTLanManagerDialect = "NT LM 0.12";
         public const bool EnableExtendedSecurity = true;
 
-        private ShareCollection m_shares; // e.g. Shared folders
+        private SMBShareCollection m_shares; // e.g. Shared folders
         private GSSProvider m_securityProvider;
         private NamedPipeShare m_services; // Named pipes
         private Guid m_serverGuid;
@@ -42,7 +42,7 @@ namespace SMBLibrary.Server
 
         public event EventHandler<LogEntry> OnLogEntry;
 
-        public SMBServer(ShareCollection shares, GSSProvider securityProvider)
+        public SMBServer(SMBShareCollection shares, GSSProvider securityProvider)
         {
             m_shares = shares;
             m_securityProvider = securityProvider;

+ 1 - 1
SMBLibrary/Server/Shares/ShareCollection.cs

@@ -11,7 +11,7 @@ using Utilities;
 
 namespace SMBLibrary.Server
 {
-    public class ShareCollection : List<FileSystemShare>
+    public class SMBShareCollection : List<FileSystemShare>
     {
         public void Add(string shareName, IFileSystem fileSystem)
         {

+ 3 - 3
SMBServer/ServerUI.cs

@@ -84,7 +84,7 @@ namespace SMBServer
                 authenticationMechanism = new IndependentNTLMAuthenticationProvider(users.GetUserPassword);
             }
 
-            ShareCollection shares;
+            SMBShareCollection shares;
             try
             {
                 shares = ReadShareSettings();
@@ -150,9 +150,9 @@ namespace SMBServer
             return users;
         }
 
-        private ShareCollection ReadShareSettings()
+        private SMBShareCollection ReadShareSettings()
         {
-            ShareCollection shares = new ShareCollection();
+            SMBShareCollection shares = new SMBShareCollection();
             XmlDocument document = GetSettingsXML();
             XmlNode sharesNode = document.SelectSingleNode("Settings/Shares");