Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

curRetry is always 0 #2

Open
weituotian opened this issue Feb 2, 2023 · 0 comments
Open

curRetry is always 0 #2

weituotian opened this issue Feb 2, 2023 · 0 comments

Comments

@weituotian
Copy link

static DWORD WINAPI WebSocketThread(LPVOID)
{
	using namespace std::chrono_literals;
	// this can happen when code becomes stale and we need to re-establish connection again
	int curRetry = 0;
	while (curRetry < MAX_RETRIES) {
		std::this_thread::sleep_for(500ms);
		// connection successful or stop signal received after retry
		if (ConnectToSocket() || bStopWebSocketThread) {
			return 0;
		}
	}
	return 0;
}

should add curRetry++

@mrexodia mrexodia reopened this Feb 2, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants