Basic TCP server

This commit is contained in:
2020-05-09 09:49:52 -04:00
parent 51b0e65ad7
commit da26a320b4
5 changed files with 136 additions and 0 deletions

23
authorizer/Program.cs Normal file
View File

@ -0,0 +1,23 @@
using System;
namespace authorizer
{
class Program
{
static AuthServer server;
static void Main(string[] args)
{
server = new AuthServer();
server.Start();
string input;
do
{
input = Console.ReadLine();
}
while(input != "stop");
server.Stop();
}
}
}