equal waiting times

This commit is contained in:
waltem01 2022-07-04 13:20:22 +02:00
parent 1d64ee823a
commit f8e878a6fb

View File

@ -97,7 +97,7 @@ public static class Connection {
own.BeginAccept(new AsyncCallback(AcceptCallback), own);
// Wait for and close connection
while (self == null)
Thread.Sleep(250);
Thread.Sleep(500);
own.Close();
}