OptionOverloadOption.cs 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. /*
  2. Technitium DNS Server
  3. Copyright (C) 2021 Shreyas Zare (shreyas@technitium.com)
  4. This program is free software: you can redistribute it and/or modify
  5. it under the terms of the GNU General Public License as published by
  6. the Free Software Foundation, either version 3 of the License, or
  7. (at your option) any later version.
  8. This program is distributed in the hope that it will be useful,
  9. but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. GNU General Public License for more details.
  12. You should have received a copy of the GNU General Public License
  13. along with this program. If not, see <http://www.gnu.org/licenses/>.
  14. */
  15. using System;
  16. using System.IO;
  17. namespace DnsServerCore.Dhcp.Options
  18. {
  19. [Flags]
  20. enum OptionOverloadValue : byte
  21. {
  22. FileFieldUsed = 1,
  23. SnameFieldUsed = 2,
  24. BothFieldsUsed = 3
  25. }
  26. class OptionOverloadOption : DhcpOption
  27. {
  28. #region variables
  29. OptionOverloadValue _value;
  30. #endregion
  31. #region constructor
  32. public OptionOverloadOption(OptionOverloadValue value)
  33. : base(DhcpOptionCode.OptionOverload)
  34. {
  35. _value = value;
  36. }
  37. public OptionOverloadOption(Stream s)
  38. : base(DhcpOptionCode.OptionOverload, s)
  39. { }
  40. #endregion
  41. #region protected
  42. protected override void ParseOptionValue(Stream s)
  43. {
  44. if (s.Length != 1)
  45. throw new InvalidDataException();
  46. int value = s.ReadByte();
  47. if (value < 0)
  48. throw new EndOfStreamException();
  49. _value = (OptionOverloadValue)value;
  50. }
  51. protected override void WriteOptionValue(Stream s)
  52. {
  53. s.WriteByte((byte)_value);
  54. }
  55. #endregion
  56. #region properties
  57. public OptionOverloadValue Value
  58. { get { return _value; } }
  59. #endregion
  60. }
  61. }