OpenMode.cs 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  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 System.Text;
  10. namespace SMBLibrary.SMB1
  11. {
  12. public enum CreateFile : byte
  13. {
  14. ReturnErrorIfNotExist = 0x00,
  15. CreateIfNotExist = 0x01,
  16. }
  17. public enum FileExistsOpts : byte
  18. {
  19. ReturnError = 0x00,
  20. Append = 0x01,
  21. TruncateToZero = 0x02,
  22. }
  23. public struct OpenMode // 2 bytes
  24. {
  25. public const int Length = 2;
  26. public FileExistsOpts FileExistsOpts;
  27. public CreateFile CreateFile;
  28. public OpenMode(byte[] buffer, int offset)
  29. {
  30. FileExistsOpts = (FileExistsOpts)(buffer[offset + 0] & 0x3);
  31. CreateFile = (CreateFile)((buffer[offset + 0] & 0x10) >> 4);
  32. }
  33. public void WriteBytes(byte[] buffer, int offset)
  34. {
  35. buffer[offset + 0] = (byte)FileExistsOpts;
  36. buffer[offset + 0] |= (byte)((byte)CreateFile << 4);
  37. }
  38. public void WriteBytes(byte[] buffer, ref int offset)
  39. {
  40. WriteBytes(buffer, offset);
  41. offset += Length;
  42. }
  43. public static OpenMode Read(byte[] buffer, ref int offset)
  44. {
  45. offset += Length;
  46. return new OpenMode(buffer, offset - Length);
  47. }
  48. }
  49. }