aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Socket.cpp
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2020-10-28 11:26:02 +0100
committerMatthias P. Braendli <matthias.braendli@mpb.li>2020-10-28 11:26:02 +0100
commit43c79b0269236cf981150645b46054d2ecf8ce61 (patch)
tree6d43b928dabea9f46e71a2b4bf088d91c52bed56 /lib/Socket.cpp
parentb25d18020f13766495d61411ace3bd89c08016ac (diff)
downloadODR-SourceCompanion-43c79b0269236cf981150645b46054d2ecf8ce61.tar.gz
ODR-SourceCompanion-43c79b0269236cf981150645b46054d2ecf8ce61.tar.bz2
ODR-SourceCompanion-43c79b0269236cf981150645b46054d2ecf8ce61.zip
common 81f518d: TCPSocket: let recv throw Interrupted on EINTR
Diffstat (limited to 'lib/Socket.cpp')
-rw-r--r--lib/Socket.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/lib/Socket.cpp b/lib/Socket.cpp
index bc1b179..d41ed1c 100644
--- a/lib/Socket.cpp
+++ b/lib/Socket.cpp
@@ -630,8 +630,13 @@ ssize_t TCPSocket::recv(void *buffer, size_t length, int flags)
{
ssize_t ret = ::recv(m_sock, buffer, length, flags);
if (ret == -1) {
- std::string errstr(strerror(errno));
- throw std::runtime_error("TCP receive error: " + errstr);
+ if (errno == EINTR) {
+ throw Interrupted();
+ }
+ else {
+ std::string errstr(strerror(errno));
+ throw std::runtime_error("TCP receive error: " + errstr);
+ }
}
return ret;
}