EchoHelper.cs 975 B

12345678910111213141516171819202122232425262728
  1. /* Copyright (C) 2014-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.SMB1;
  10. namespace SMBLibrary.Server.SMB1
  11. {
  12. internal class EchoHelper
  13. {
  14. internal static List<SMB1Command> GetEchoResponse(EchoRequest request)
  15. {
  16. List<SMB1Command> response = new List<SMB1Command>();
  17. for (int index = 0; index < request.EchoCount; index++)
  18. {
  19. EchoResponse echo = new EchoResponse();
  20. echo.SequenceNumber = (ushort)index;
  21. echo.Data = request.Data;
  22. response.Add(echo);
  23. }
  24. return response;
  25. }
  26. }
  27. }