CancelHelper.cs 1.1 KB

123456789101112131415161718192021222324252627282930
  1. /* Copyright (C) 2017 Tal Aloni <tal.aloni.il@gmail.com>. All rights reserved.
  2. *
  3. * You can redistribute this program and/or modify it under the terms of
  4. * the GNU Lesser Public License as published by the Free Software Foundation,
  5. * either version 3 of the License, or (at your option) any later version.
  6. */
  7. using System;
  8. using System.Collections.Generic;
  9. using SMBLibrary.SMB2;
  10. using Utilities;
  11. namespace SMBLibrary.Server.SMB2
  12. {
  13. internal class CancelHelper
  14. {
  15. internal static SMB2Command GetCancelResponse(CancelRequest request, SMB2ConnectionState state)
  16. {
  17. if (request.Header.IsAsync && request.Header.AsyncID == 0)
  18. {
  19. ErrorResponse response = new ErrorResponse(request.CommandName, NTStatus.STATUS_CANCELLED);
  20. response.Header.IsAsync = true;
  21. return response;
  22. }
  23. // [MS-SMB2] If a request is not found [..] no response is sent.
  24. // [MS-SMB2] If the target request is not successfully canceled [..] no response is sent.
  25. return null;
  26. }
  27. }
  28. }