webserver written in C#.
server uses System.Globalization;
for determining the correct local time of the host:
DateTime currentDateTime = DateTime.Now;
string formattedDateTime = currentDateTime.ToString("yyyy-MM-dd HH:mm:ss", CultureInfo.InvariantCulture);
you can change the port by changing int port
variable. the port is set to 5050 by default:
private static int port = 5050;