1
0
mirror of https://github.com/deavminet/dnetd synced 2024-09-21 09:43:37 +02:00

STart server after configuring linking

This commit is contained in:
Tristan B. Kildaire 2021-01-29 14:30:02 +02:00
parent 18ba20bc21
commit 1c65c86441

View File

@ -70,7 +70,7 @@ void main(string[] args)
/* If the configuration reading was successful (valid JSON) */
if(config)
{
/* Start the server */
/* Create a new server */
DServer dserver = new DServer(config);
/* Now configure the the linking */
@ -80,6 +80,9 @@ void main(string[] args)
/* TODO: Start meyer here (remove from inside DServer) */
/* Start the server */
dserver.startServer();
}
else
{