WorkstationInfo.cs 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /* Copyright (C) 2014-2018 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.RPC;
  10. namespace SMBLibrary.Services
  11. {
  12. /// <summary>
  13. /// [MS-WKST] WKSTA_INFO Union
  14. /// </summary>
  15. public class WorkstationInfo : INDRStructure
  16. {
  17. public uint Level;
  18. public WorkstationInfoLevel Info;
  19. public WorkstationInfo()
  20. {
  21. }
  22. public WorkstationInfo(uint level)
  23. {
  24. Level = level;
  25. }
  26. public WorkstationInfo(WorkstationInfoLevel info)
  27. {
  28. Level = info.Level;
  29. Info = info;
  30. }
  31. public WorkstationInfo(NDRParser parser)
  32. {
  33. Read(parser);
  34. }
  35. public void Read(NDRParser parser)
  36. {
  37. parser.BeginStructure();
  38. Level = parser.ReadUInt32();
  39. switch (Level)
  40. {
  41. case 100:
  42. WorkstationInfo100 info100 = null;
  43. parser.ReadEmbeddedStructureFullPointer<WorkstationInfo100>(ref info100);
  44. Info = info100;
  45. break;
  46. case 101:
  47. WorkstationInfo101 info101 = null;
  48. parser.ReadEmbeddedStructureFullPointer<WorkstationInfo101>(ref info101);
  49. Info = info101;
  50. break;
  51. default:
  52. throw new NotImplementedException();
  53. }
  54. parser.EndStructure();
  55. }
  56. public void Write(NDRWriter writer)
  57. {
  58. if (Info != null && Level != Info.Level)
  59. {
  60. throw new ArgumentException("Invalid WKSTA_INFO Level");
  61. }
  62. writer.BeginStructure();
  63. writer.WriteUInt32(Level);
  64. writer.WriteEmbeddedStructureFullPointer(Info);
  65. writer.EndStructure();
  66. }
  67. }
  68. }