protected override void acceptSockets()
        {
            Log.notify("Listening", this);

            while (doListen)
            {
                Socket client = tcpServer.AcceptSocket();
                SessionSocket c = new SessionSocket(client, this);
            }
        }
        protected override void acceptSockets()
        {
            Log.notify("Listening", this);

            while (doListen)
            {
                Socket        client = tcpServer.AcceptSocket();
                SessionSocket c      = new SessionSocket(client, this);
            }
        }