ServerInfo.cs 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. using Utilities;
  11. namespace SMBLibrary.Services
  12. {
  13. /// <summary>
  14. /// [MS-SRVS] SERVER_INFO Union
  15. /// </summary>
  16. public class ServerInfo : INDRStructure
  17. {
  18. public uint Level;
  19. public ServerInfoLevel Info;
  20. public ServerInfo()
  21. {
  22. }
  23. public ServerInfo(uint level)
  24. {
  25. Level = level;
  26. }
  27. public ServerInfo(ServerInfoLevel info)
  28. {
  29. Level = info.Level;
  30. Info = info;
  31. }
  32. public ServerInfo(NDRParser parser)
  33. {
  34. Read(parser);
  35. }
  36. public void Read(NDRParser parser)
  37. {
  38. parser.BeginStructure(); // SERVER_INFO Union
  39. Level = parser.ReadUInt32();
  40. switch (Level)
  41. {
  42. case 100:
  43. ServerInfo100 info100 = null;
  44. parser.ReadEmbeddedStructureFullPointer<ServerInfo100>(ref info100);
  45. Info = info100;
  46. break;
  47. case 101:
  48. ServerInfo101 info101 = null;
  49. parser.ReadEmbeddedStructureFullPointer<ServerInfo101>(ref info101);
  50. Info = info101;
  51. break;
  52. default:
  53. throw new NotImplementedException();
  54. }
  55. ;
  56. parser.EndStructure(); // SERVER_INFO Union
  57. }
  58. public void Write(NDRWriter writer)
  59. {
  60. writer.BeginStructure(); // SERVER_INFO Union
  61. writer.WriteUInt32(Level);
  62. writer.WriteEmbeddedStructureFullPointer(Info);
  63. writer.EndStructure(); // SERVER_INFO Union
  64. }
  65. }
  66. }