1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using SMBLibrary.SMB2;
- using Utilities;
- namespace SMBLibrary.Server.SMB2
- {
- internal class ChangeNotifyHelper
- {
- internal static SMB2Command GetChangeNotifyInterimResponse(ChangeNotifyRequest request, ISMBShare share, SMB2ConnectionState state)
- {
-
- ErrorResponse response = new ErrorResponse(request.CommandName, NTStatus.STATUS_NOT_SUPPORTED);
-
-
- response.Header.IsAsync = true;
- return response;
- }
- }
- }
|