changed update check urls to permanent go.technitium.com urls.

This commit is contained in:
Shreyas Zare
2019-04-20 14:06:22 +05:30
parent d9293242ab
commit 6af822c9dc
3 changed files with 4 additions and 4 deletions

View File

@@ -36,7 +36,7 @@ namespace DnsServerApp
try try
{ {
service = new DnsWebService(configFolder, new Uri("https://technitium.com/download/dns/updateca2.bin")); service = new DnsWebService(configFolder, new Uri("https://go.technitium.com/?id=21"));
service.Start(); service.Start();
Console.WriteLine("Technitium DNS Server was started successfully."); Console.WriteLine("Technitium DNS Server was started successfully.");

View File

@@ -36,7 +36,7 @@ namespace DnsServerApp
try try
{ {
service = new DnsWebService(configFolder, new Uri("https://technitium.com/download/dns/updatewa2.bin")); service = new DnsWebService(configFolder, new Uri("https://go.technitium.com/?id=20"));
service.Start(); service.Start();
Console.WriteLine("Technitium DNS Server was started successfully."); Console.WriteLine("Technitium DNS Server was started successfully.");

View File

@@ -1,6 +1,6 @@
/* /*
Technitium DNS Server Technitium DNS Server
Copyright (C) 2018 Shreyas Zare (shreyas@technitium.com) Copyright (C) 2019 Shreyas Zare (shreyas@technitium.com)
This program is free software: you can redistribute it and/or modify This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by it under the terms of the GNU General Public License as published by
@@ -34,7 +34,7 @@ namespace DnsService
protected override void OnStart(string[] args) protected override void OnStart(string[] args)
{ {
_service = new DnsWebService(null, new Uri("https://technitium.com/download/dns/updatews2.bin")); _service = new DnsWebService(null, new Uri("https://go.technitium.com/?id=22"));
_service.Start(); _service.Start();
} }