ContextElement.cs 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. /* Copyright (C) 2014 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. using Utilities;
  11. namespace SMBLibrary.RPC
  12. {
  13. /// <summary>
  14. /// p_cont_elem_t
  15. /// </summary>
  16. public class ContextElement // Presentation Context Element
  17. {
  18. public ushort ContextID;
  19. //byte NumberOfTransferSyntaxItems;
  20. public byte Reserved;
  21. public SyntaxID AbstractSyntax;
  22. public List<SyntaxID> TransferSyntaxList = new List<SyntaxID>();
  23. public ContextElement(byte[] buffer, int offset)
  24. {
  25. ContextID = LittleEndianConverter.ToUInt16(buffer, offset + 0);
  26. byte numberOfTransferSyntaxItems = ByteReader.ReadByte(buffer, offset + 2);
  27. Reserved = ByteReader.ReadByte(buffer, offset + 3);
  28. AbstractSyntax = new SyntaxID(buffer, offset + 4);
  29. offset += 4 + SyntaxID.Length;
  30. for (int index = 0; index < numberOfTransferSyntaxItems; index++)
  31. {
  32. SyntaxID syntax = new SyntaxID(buffer, offset);
  33. TransferSyntaxList.Add(syntax);
  34. offset += SyntaxID.Length;
  35. }
  36. }
  37. public void WriteBytes(byte[] buffer, int offset)
  38. {
  39. byte numberOfTransferSyntaxItems = (byte)TransferSyntaxList.Count;
  40. LittleEndianWriter.WriteUInt16(buffer, offset + 0, ContextID);
  41. ByteWriter.WriteByte(buffer, offset + 2, numberOfTransferSyntaxItems);
  42. ByteWriter.WriteByte(buffer, offset + 3, Reserved);
  43. AbstractSyntax.WriteBytes(buffer, offset + 4);
  44. offset += 4 + SyntaxID.Length;
  45. for (int index = 0; index < numberOfTransferSyntaxItems; index++)
  46. {
  47. TransferSyntaxList[index].WriteBytes(buffer, offset);
  48. offset += SyntaxID.Length;
  49. }
  50. }
  51. public int Length
  52. {
  53. get
  54. {
  55. return 4 + SyntaxID.Length * (TransferSyntaxList.Count + 1);
  56. }
  57. }
  58. }
  59. }