mirror of
https://github.com/fergalmoran/DnsServer.git
synced 2025-12-22 09:29:50 +00:00
minor code refactoring.
This commit is contained in:
@@ -1,6 +1,6 @@
|
|||||||
/*
|
/*
|
||||||
Technitium DNS Server
|
Technitium DNS Server
|
||||||
Copyright (C) 2023 Shreyas Zare (shreyas@technitium.com)
|
Copyright (C) 2024 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
|
||||||
@@ -32,8 +32,8 @@ namespace DnsServerApp
|
|||||||
if (args.Length == 1)
|
if (args.Length == 1)
|
||||||
configFolder = args[0];
|
configFolder = args[0];
|
||||||
|
|
||||||
EventWaitHandle waitHandle = new ManualResetEvent(false);
|
ManualResetEvent waitHandle = new ManualResetEvent(false);
|
||||||
EventWaitHandle exitHandle = new ManualResetEvent(false);
|
ManualResetEvent exitHandle = new ManualResetEvent(false);
|
||||||
DnsWebService service = null;
|
DnsWebService service = null;
|
||||||
|
|
||||||
try
|
try
|
||||||
|
|||||||
Reference in New Issue
Block a user