From 5158ec77b70193f827d0aff620493425b4e0a0b2 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 12 Nov 2022 17:17:09 +0530 Subject: [PATCH] DnsServerInternal: implemented new interface changes. --- DnsServerCore/Dns/Applications/DnsServerInternal.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/DnsServerCore/Dns/Applications/DnsServerInternal.cs b/DnsServerCore/Dns/Applications/DnsServerInternal.cs index 74b3413d..e00783a8 100644 --- a/DnsServerCore/Dns/Applications/DnsServerInternal.cs +++ b/DnsServerCore/Dns/Applications/DnsServerInternal.cs @@ -89,6 +89,9 @@ namespace DnsServerCore.Dns.Applications public bool PreferIPv6 { get { return _dnsServer.PreferIPv6; } } + public ushort UdpPayloadSize + { get { return _dnsServer.UdpPayloadSize; } } + #endregion } }