1234567891011121314151617181920212223 |
- using System;
- using System.Collections.Generic;
- using SMBLibrary.SMB1;
- using Utilities;
- namespace SMBLibrary.Server.SMB1
- {
- internal class NotifyChangeHelper
- {
- internal static void ProcessNTTransactNotifyChangeRequest(SMB1Header header, uint maxParameterCount, NTTransactNotifyChangeRequest subcommand, ISMBShare share, SMB1ConnectionState state)
- {
-
-
- header.Status = NTStatus.STATUS_NOT_IMPLEMENTED;
- }
- }
- }
|