aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/OutputUHDFeedback.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/OutputUHDFeedback.cpp b/src/OutputUHDFeedback.cpp
index 056be29..cfb74b7 100644
--- a/src/OutputUHDFeedback.cpp
+++ b/src/OutputUHDFeedback.cpp
@@ -198,7 +198,8 @@ void OutputUHDFeedback::ServeFeedback()
TCPSocket client_sock = m_server_sock.accept_with_timeout(1000, &client);
if (not client_sock.valid()) {
- throw runtime_error("Could not establish new connection");
+ // No connection request received
+ continue;
}
uint8_t request_version = 0;