From 58f5b549cc575e3939100acbb734bc73b9b2c41e Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 23 Oct 2021 12:03:16 +0530 Subject: [PATCH] minor changes --- DnsServerCore/Dhcp/DhcpServer.cs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/DnsServerCore/Dhcp/DhcpServer.cs b/DnsServerCore/Dhcp/DhcpServer.cs index 9130448a..321c20e1 100644 --- a/DnsServerCore/Dhcp/DhcpServer.cs +++ b/DnsServerCore/Dhcp/DhcpServer.cs @@ -34,16 +34,16 @@ using TechnitiumLibrary.Net.Dns.ResourceRecords; namespace DnsServerCore.Dhcp { //Dynamic Host Configuration Protocol - //https://tools.ietf.org/html/rfc2131 + //https://datatracker.ietf.org/doc/html/rfc2131 //DHCP Options and BOOTP Vendor Extensions - //https://tools.ietf.org/html/rfc2132 + //https://datatracker.ietf.org/doc/html/rfc2132 //Encoding Long Options in the Dynamic Host Configuration Protocol (DHCPv4) - //https://tools.ietf.org/html/rfc3396 + //https://datatracker.ietf.org/doc/html/rfc3396 //Client Fully Qualified Domain Name(FQDN) Option - //https://tools.ietf.org/html/rfc4702 + //https://datatracker.ietf.org/doc/html/rfc4702 public sealed class DhcpServer : IDisposable {