//연결 체크 답신
    public void ServerConnectionAnswer(DataPacket packet)
    {
        ConnectionCheck newConnectionCheck = ConnectionChecker.FindClientWithSocket(packet.client);

        if (newConnectionCheck != null)
        {
            newConnectionCheck.IsConnected = true;
        }
    }