From 30d4549a5f2a0f29714974d34e12e9964a69bac4 Mon Sep 17 00:00:00 2001 From: Shreyas Zare Date: Sat, 29 Jun 2019 14:00:57 +0530 Subject: [PATCH] minor changes --- DnsServerApp.NETCore/Program.cs | 4 ++-- DnsServerApp/Program.cs | 4 ++-- DnsService/DnsService.cs | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/DnsServerApp.NETCore/Program.cs b/DnsServerApp.NETCore/Program.cs index 8018406f..eb1cbb74 100644 --- a/DnsServerApp.NETCore/Program.cs +++ b/DnsServerApp.NETCore/Program.cs @@ -32,11 +32,11 @@ namespace DnsServerApp if (args.Length == 1) configFolder = args[0]; - DnsWebService service = null; + WebService service = null; try { - service = new DnsWebService(configFolder, new Uri("https://go.technitium.com/?id=21")); + service = new WebService(configFolder, new Uri("https://go.technitium.com/?id=21")); service.Start(); Console.WriteLine("Technitium DNS Server was started successfully."); diff --git a/DnsServerApp/Program.cs b/DnsServerApp/Program.cs index d8b2c429..81cc39d0 100644 --- a/DnsServerApp/Program.cs +++ b/DnsServerApp/Program.cs @@ -32,11 +32,11 @@ namespace DnsServerApp if (args.Length == 1) configFolder = args[0]; - DnsWebService service = null; + WebService service = null; try { - service = new DnsWebService(configFolder, new Uri("https://go.technitium.com/?id=20")); + service = new WebService(configFolder, new Uri("https://go.technitium.com/?id=20")); service.Start(); Console.WriteLine("Technitium DNS Server was started successfully."); diff --git a/DnsService/DnsService.cs b/DnsService/DnsService.cs index dd8a6924..9879082b 100644 --- a/DnsService/DnsService.cs +++ b/DnsService/DnsService.cs @@ -25,7 +25,7 @@ namespace DnsService { public partial class DnsService : ServiceBase { - DnsWebService _service; + WebService _service; public DnsService() { @@ -34,7 +34,7 @@ namespace DnsService protected override void OnStart(string[] args) { - _service = new DnsWebService(null, new Uri("https://go.technitium.com/?id=22")); + _service = new WebService(null, new Uri("https://go.technitium.com/?id=22")); _service.Start(); }