]> andersk Git - moira.git/commitdiff
Add ECONNABORTED to the errno values we don't consider fatal in
authorzacheiss <zacheiss>
Thu, 24 Apr 2003 18:38:55 +0000 (18:38 +0000)
committerzacheiss <zacheiss>
Thu, 24 Apr 2003 18:38:55 +0000 (18:38 +0000)
mr_accept().  It most likely means we were portscanned.

lib/mr_connect.c

index 526a63fa6a1ae1af5602ff7e78d4085b8bc76498..e265675cf73ec225bd78e6a721d73b99d2dbcdf5 100644 (file)
@@ -332,6 +332,9 @@ int mr_accept(int s, struct sockaddr_in *sin)
       if (conn < 0 && errno != EINTR
 #ifdef ERESTART
          && errno != ERESTART
+#endif
+#ifdef ECONNABORTED
+         && errno != ECONNABORTED
 #endif
          )
        return -1;
This page took 0.044668 seconds and 5 git commands to generate.