@@ -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)
@@ -14,7 +14,7 @@ using Utilities;
- public class NTCreateHelper
+ internal class NTCreateHelper
internal static SMB1Command GetNTCreateResponse(SMB1Header header, NTCreateAndXRequest request, ISMBShare share, SMB1ConnectionState state)
@@ -12,7 +12,7 @@ using Utilities;
- 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.
@@ -17,7 +17,7 @@ namespace SMBLibrary.Server.SMB1
/// Negotiate helper
/// </summary>
- public class NegotiateHelper
+ internal class NegotiateHelper
internal static NegotiateResponse GetNegotiateResponse(SMB1Header header, NegotiateRequest request, GSSProvider securityProvider, ConnectionState state)
- public class OpenAndXHelper
+ internal class OpenAndXHelper
internal static SMB1Command GetOpenAndXResponse(SMB1Header header, OpenAndXRequest request, ISMBShare share, SMB1ConnectionState state)
@@ -15,7 +15,7 @@ using Utilities;
- public class ReadWriteResponseHelper
+ internal class ReadWriteResponseHelper
internal static SMB1Command GetReadResponse(SMB1Header header, ReadRequest request, ISMBShare share, SMB1ConnectionState state)
- public partial class SMB1FileStoreHelper
+ internal partial class SMB1FileStoreHelper
public static NTStatus GetFileInformation(out QueryInformation result, INTFileStore fileStore, string path, QueryInformationLevel informationLevel, SecurityContext securityContext)
// Filename pattern examples:
// '\Directory' - Get the directory entry
public static NTStatus GetFileSystemInformation(out QueryFSInformation result, INTFileStore fileStore, QueryFSInformationLevel informationLevel)
public static NTStatus SetFileInformation(INTFileStore fileStore, object handle, SetInformation information)
public static NTStatus CreateDirectory(INTFileStore fileStore, string path, SecurityContext securityContext)
- public partial class ServerResponseHelper
+ internal partial class ServerResponseHelper
internal static SMB1Command GetCloseResponse(SMB1Header header, CloseRequest request, ISMBShare share, SMB1ConnectionState state)
/// Session Setup helper
- public class SessionSetupHelper
+ internal class SessionSetupHelper
internal static SMB1Command GetSessionSetupResponse(SMB1Header header, SessionSetupAndXRequest request, GSSProvider securityProvider, SMB1ConnectionState state)
- public class Transaction2SubcommandHelper
+ internal class Transaction2SubcommandHelper
internal static Transaction2FindFirst2Response GetSubcommandResponse(SMB1Header header, Transaction2FindFirst2Request subcommand, ISMBShare share, SMB1ConnectionState state)
- public class TransactionHelper
+ internal class TransactionHelper
- public class TransactionSubcommandHelper
+ internal class TransactionSubcommandHelper
internal static TransactionTransactNamedPipeResponse GetSubcommandResponse(SMB1Header header, TransactionTransactNamedPipeRequest subcommand, ISMBShare share, SMB1ConnectionState state)
- public class TreeConnectHelper
+ internal class TreeConnectHelper
internal static SMB1Command GetTreeConnectResponse(SMB1Header header, TreeConnectAndXRequest request, SMB1ConnectionState state, NamedPipeShare services, ShareCollection shares)
namespace SMBLibrary.Server.SMB2
- public class CloseHelper
+ internal class CloseHelper
internal static SMB2Command GetCloseResponse(CloseRequest request, ISMBShare share, SMB2ConnectionState state)
- public class CreateHelper
+ internal class CreateHelper
internal static SMB2Command GetCreateResponse(CreateRequest request, ISMBShare share, SMB2ConnectionState state)
- public class IOCtlHelper
+ internal class IOCtlHelper
internal static SMB2Command GetIOCtlResponse(IOCtlRequest request, ISMBShare share, SMB2ConnectionState state)
@@ -15,7 +15,7 @@ namespace SMBLibrary.Server.SMB2
public const string SMB2002Dialect = "SMB 2.002";
public const string SMB2xxxDialect = "SMB 2.???";
- public class QueryDirectoryHelper
+ internal class QueryDirectoryHelper
internal static SMB2Command GetQueryDirectoryResponse(QueryDirectoryRequest request, ISMBShare share, SMB2ConnectionState state)
- public class QueryInfoHelper
+ internal class QueryInfoHelper
internal static SMB2Command GetQueryInfoResponse(QueryInfoRequest request, ISMBShare share, SMB2ConnectionState state)
internal static SMB2Command GetReadResponse(ReadRequest request, ISMBShare share, SMB2ConnectionState state)
@@ -16,7 +16,7 @@ namespace SMBLibrary.Server.SMB2
internal static SMB2Command GetSessionSetupResponse(SessionSetupRequest request, GSSProvider securityProvider, SMB2ConnectionState state)
- public class SetInfoHelper
+ internal class SetInfoHelper
internal static SMB2Command GetSetInfoResponse(SetInfoRequest request, ISMBShare share, SMB2ConnectionState state)
internal static SMB2Command GetTreeConnectResponse(TreeConnectRequest request, SMB2ConnectionState state, NamedPipeShare services, ShareCollection shares)