Bläddra i källkod

SMBServer: Hid internal classes

Tal Aloni 8 år sedan
förälder
incheckning
a7af73ae2d
27 ändrade filer med 27 tillägg och 27 borttagningar
  1. 1 1
      SMBLibrary/Server/SMB1/FileStoreResponseHelper.cs
  2. 1 1
      SMBLibrary/Server/SMB1/NTCreateHelper.cs
  3. 1 1
      SMBLibrary/Server/SMB1/NTTransactHelper.cs
  4. 1 1
      SMBLibrary/Server/SMB1/NegotiateHelper.cs
  5. 1 1
      SMBLibrary/Server/SMB1/OpenAndXHelper.cs
  6. 1 1
      SMBLibrary/Server/SMB1/ReadWriteResponseHelper.cs
  7. 1 1
      SMBLibrary/Server/SMB1/SMB1FileStoreHelper.Query.cs
  8. 1 1
      SMBLibrary/Server/SMB1/SMB1FileStoreHelper.QueryDirectory.cs
  9. 1 1
      SMBLibrary/Server/SMB1/SMB1FileStoreHelper.QueryFileSystem.cs
  10. 1 1
      SMBLibrary/Server/SMB1/SMB1FileStoreHelper.Set.cs
  11. 1 1
      SMBLibrary/Server/SMB1/SMB1FileStoreHelper.cs
  12. 1 1
      SMBLibrary/Server/SMB1/ServerResponseHelper.cs
  13. 1 1
      SMBLibrary/Server/SMB1/SessionSetupHelper.cs
  14. 1 1
      SMBLibrary/Server/SMB1/Transaction2SubcommandHelper.cs
  15. 1 1
      SMBLibrary/Server/SMB1/TransactionHelper.cs
  16. 1 1
      SMBLibrary/Server/SMB1/TransactionSubcommandHelper.cs
  17. 1 1
      SMBLibrary/Server/SMB1/TreeConnectHelper.cs
  18. 1 1
      SMBLibrary/Server/SMB2/CloseHelper.cs
  19. 1 1
      SMBLibrary/Server/SMB2/CreateHelper.cs
  20. 1 1
      SMBLibrary/Server/SMB2/IOCtlHelper.cs
  21. 1 1
      SMBLibrary/Server/SMB2/NegotiateHelper.cs
  22. 1 1
      SMBLibrary/Server/SMB2/QueryDirectoryHelper.cs
  23. 1 1
      SMBLibrary/Server/SMB2/QueryInfoHelper.cs
  24. 1 1
      SMBLibrary/Server/SMB2/ReadWriteResponseHelper.cs
  25. 1 1
      SMBLibrary/Server/SMB2/SessionSetupHelper.cs
  26. 1 1
      SMBLibrary/Server/SMB2/SetInfoHelper.cs
  27. 1 1
      SMBLibrary/Server/SMB2/TreeConnectHelper.cs

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

@@ -13,7 +13,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public class FileStoreResponseHelper
+    internal class FileStoreResponseHelper
     {
         internal static SMB1Command GetCreateDirectoryResponse(SMB1Header header, CreateDirectoryRequest request, ISMBShare share, SMB1ConnectionState state)
         {

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

@@ -14,7 +14,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public class NTCreateHelper
+    internal class NTCreateHelper
     {
         internal static SMB1Command GetNTCreateResponse(SMB1Header header, NTCreateAndXRequest request, ISMBShare share, SMB1ConnectionState state)
         {

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

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public class NTTransactHelper
+    internal class NTTransactHelper
     {
         /// <summary>
         /// The client MUST send as many secondary requests as are needed to complete the transfer of the transaction request.

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

@@ -17,7 +17,7 @@ namespace SMBLibrary.Server.SMB1
     /// <summary>
     /// Negotiate helper
     /// </summary>
-    public class NegotiateHelper
+    internal class NegotiateHelper
     {
         internal static NegotiateResponse GetNegotiateResponse(SMB1Header header, NegotiateRequest request, GSSProvider securityProvider, ConnectionState state)
         {

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

@@ -14,7 +14,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public class OpenAndXHelper
+    internal class OpenAndXHelper
     {
         internal static SMB1Command GetOpenAndXResponse(SMB1Header header, OpenAndXRequest request, ISMBShare share, SMB1ConnectionState state)
         {

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

@@ -15,7 +15,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public class ReadWriteResponseHelper
+    internal class ReadWriteResponseHelper
     {
         internal static SMB1Command GetReadResponse(SMB1Header header, ReadRequest request, ISMBShare share, SMB1ConnectionState state)
         {

+ 1 - 1
SMBLibrary/Server/SMB1/SMB1FileStoreHelper.Query.cs

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public partial class SMB1FileStoreHelper
+    internal partial class SMB1FileStoreHelper
     {
         public static NTStatus GetFileInformation(out QueryInformation result, INTFileStore fileStore, string path, QueryInformationLevel informationLevel, SecurityContext securityContext)
         {

+ 1 - 1
SMBLibrary/Server/SMB1/SMB1FileStoreHelper.QueryDirectory.cs

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public partial class SMB1FileStoreHelper
+    internal partial class SMB1FileStoreHelper
     {
         // Filename pattern examples:
         // '\Directory' - Get the directory entry

+ 1 - 1
SMBLibrary/Server/SMB1/SMB1FileStoreHelper.QueryFileSystem.cs

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public partial class SMB1FileStoreHelper
+    internal partial class SMB1FileStoreHelper
     {
         public static NTStatus GetFileSystemInformation(out QueryFSInformation result, INTFileStore fileStore, QueryFSInformationLevel informationLevel)
         {

+ 1 - 1
SMBLibrary/Server/SMB1/SMB1FileStoreHelper.Set.cs

@@ -13,7 +13,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public partial class SMB1FileStoreHelper
+    internal partial class SMB1FileStoreHelper
     {
         public static NTStatus SetFileInformation(INTFileStore fileStore, object handle, SetInformation information)
         {

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

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public partial class SMB1FileStoreHelper
+    internal partial class SMB1FileStoreHelper
     {
         public static NTStatus CreateDirectory(INTFileStore fileStore, string path, SecurityContext securityContext)
         {

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

@@ -13,7 +13,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public partial class ServerResponseHelper
+    internal partial class ServerResponseHelper
     {
         internal static SMB1Command GetCloseResponse(SMB1Header header, CloseRequest request, ISMBShare share, SMB1ConnectionState state)
         {

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

@@ -17,7 +17,7 @@ namespace SMBLibrary.Server.SMB1
     /// <summary>
     /// Session Setup helper
     /// </summary>
-    public class SessionSetupHelper
+    internal class SessionSetupHelper
     {
         internal static SMB1Command GetSessionSetupResponse(SMB1Header header, SessionSetupAndXRequest request, GSSProvider securityProvider, SMB1ConnectionState state)
         {

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

@@ -13,7 +13,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public class Transaction2SubcommandHelper
+    internal class Transaction2SubcommandHelper
     {
         internal static Transaction2FindFirst2Response GetSubcommandResponse(SMB1Header header, Transaction2FindFirst2Request subcommand, ISMBShare share, SMB1ConnectionState state)
         {

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

@@ -14,7 +14,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public class TransactionHelper
+    internal class TransactionHelper
     {
         /// <summary>
         /// The client MUST send as many secondary requests as are needed to complete the transfer of the transaction request.

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

@@ -14,7 +14,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public class TransactionSubcommandHelper
+    internal class TransactionSubcommandHelper
     {
         internal static TransactionTransactNamedPipeResponse GetSubcommandResponse(SMB1Header header, TransactionTransactNamedPipeRequest subcommand, ISMBShare share, SMB1ConnectionState state)
         {

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

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB1
 {
-    public class TreeConnectHelper
+    internal class TreeConnectHelper
     {
         internal static SMB1Command GetTreeConnectResponse(SMB1Header header, TreeConnectAndXRequest request, SMB1ConnectionState state, NamedPipeShare services, ShareCollection shares)
         {

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

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB2
 {
-    public class CloseHelper
+    internal class CloseHelper
     {
         internal static SMB2Command GetCloseResponse(CloseRequest request, ISMBShare share, SMB2ConnectionState state)
         {

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

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB2
 {
-    public class CreateHelper
+    internal class CreateHelper
     {
         internal static SMB2Command GetCreateResponse(CreateRequest request, ISMBShare share, SMB2ConnectionState state)
         {

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

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB2
 {
-    public class IOCtlHelper
+    internal class IOCtlHelper
     {
         internal static SMB2Command GetIOCtlResponse(IOCtlRequest request, ISMBShare share, SMB2ConnectionState state)
         {

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

@@ -15,7 +15,7 @@ namespace SMBLibrary.Server.SMB2
     /// <summary>
     /// Negotiate helper
     /// </summary>
-    public class NegotiateHelper
+    internal class NegotiateHelper
     {
         public const string SMB2002Dialect = "SMB 2.002";
         public const string SMB2xxxDialect = "SMB 2.???";

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

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB2
 {
-    public class QueryDirectoryHelper
+    internal class QueryDirectoryHelper
     {
         internal static SMB2Command GetQueryDirectoryResponse(QueryDirectoryRequest request, ISMBShare share, SMB2ConnectionState state)
         {

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

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB2
 {
-    public class QueryInfoHelper
+    internal class QueryInfoHelper
     {
         internal static SMB2Command GetQueryInfoResponse(QueryInfoRequest request, ISMBShare share, SMB2ConnectionState state)
         {

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

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB2
 {
-    public class ReadWriteResponseHelper
+    internal class ReadWriteResponseHelper
     {
         internal static SMB2Command GetReadResponse(ReadRequest request, ISMBShare share, SMB2ConnectionState state)
         {

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

@@ -16,7 +16,7 @@ namespace SMBLibrary.Server.SMB2
     /// <summary>
     /// Session Setup helper
     /// </summary>
-    public class SessionSetupHelper
+    internal class SessionSetupHelper
     {
         internal static SMB2Command GetSessionSetupResponse(SessionSetupRequest request, GSSProvider securityProvider, SMB2ConnectionState state)
         {

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

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB2
 {
-    public class SetInfoHelper
+    internal class SetInfoHelper
     {
         internal static SMB2Command GetSetInfoResponse(SetInfoRequest request, ISMBShare share, SMB2ConnectionState state)
         {

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

@@ -12,7 +12,7 @@ using Utilities;
 
 namespace SMBLibrary.Server.SMB2
 {
-    public class TreeConnectHelper
+    internal class TreeConnectHelper
     {
         internal static SMB2Command GetTreeConnectResponse(TreeConnectRequest request, SMB2ConnectionState state, NamedPipeShare services, ShareCollection shares)
         {