DomainSearchOption.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. /*
  2. Technitium DNS Server
  3. Copyright (C) 2022 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.Collections.Generic;
  16. using System.IO;
  17. using TechnitiumLibrary.Net.Dns;
  18. namespace DnsServerCore.Dhcp.Options
  19. {
  20. class DomainSearchOption : DhcpOption
  21. {
  22. #region variables
  23. IReadOnlyCollection<string> _searchStrings;
  24. #endregion
  25. #region constructor
  26. public DomainSearchOption(IReadOnlyCollection<string> searchStrings)
  27. : base(DhcpOptionCode.DomainSearch)
  28. {
  29. _searchStrings = searchStrings;
  30. }
  31. public DomainSearchOption(Stream s)
  32. : base(DhcpOptionCode.DomainSearch, s)
  33. { }
  34. #endregion
  35. #region protected
  36. protected override void ParseOptionValue(Stream s)
  37. {
  38. if (s.Length < 1)
  39. throw new InvalidDataException();
  40. List<string> searchStrings = new List<string>();
  41. while (s.Length > 0)
  42. searchStrings.Add(DnsDatagram.DeserializeDomainName(s));
  43. _searchStrings = searchStrings;
  44. }
  45. protected override void WriteOptionValue(Stream s)
  46. {
  47. List<DnsDomainOffset> domainEntries = new List<DnsDomainOffset>(1);
  48. foreach (string searchString in _searchStrings)
  49. DnsDatagram.SerializeDomainName(searchString, s, domainEntries);
  50. }
  51. #endregion
  52. #region properties
  53. public IReadOnlyCollection<string> SearchStrings
  54. { get { return _searchStrings; } }
  55. #endregion
  56. }
  57. }