summaryrefslogtreecommitdiffstats
path: root/tests/echo_srv.c
diff options
context:
space:
mode:
Diffstat (limited to 'tests/echo_srv.c')
-rw-r--r--tests/echo_srv.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/echo_srv.c b/tests/echo_srv.c
index 87c85f7..0aefa9a 100644
--- a/tests/echo_srv.c
+++ b/tests/echo_srv.c
@@ -538,6 +538,9 @@ static void echo_tcp(int sock)
while (1) {
s = accept(sock, &addr.sa.s, &addr.sa_socklen);
+ if (s == -1 && errno == ECONNABORTED) {
+ continue;
+ }
if (s == -1) {
perror("accept");
goto done;