=================================================================== RCS file: /home/cvs/OpenXM/src/kan96xx/plugin/mytcpio.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- OpenXM/src/kan96xx/plugin/mytcpio.c 2002/10/23 08:42:22 1.9 +++ OpenXM/src/kan96xx/plugin/mytcpio.c 2003/07/20 07:18:45 1.10 @@ -1,4 +1,4 @@ -/* $OpenXM: OpenXM/src/kan96xx/plugin/mytcpio.c,v 1.8 2002/10/20 08:26:00 takayama Exp $ */ +/* $OpenXM: OpenXM/src/kan96xx/plugin/mytcpio.c,v 1.9 2002/10/23 08:42:22 takayama Exp $ */ #include #include #include @@ -113,8 +113,20 @@ socketAcceptLocal(int snum) { fprintf(TcpioError,"Trying to accept from localhost... "); fflush(TcpioError); len = sizeof(struct sockaddr); if ((news = accept(s,&peer,&len)) < 0) { - errorMsg1s("Error in accept."); - return(-1); + errorMsg1s("Error in accept. Retrying"); + { /* Code added for strange behavior on cygwin. */ + int i; + for (i=0; i<5; i++) { + if ((news = accept(s,&peer,&len)) < 0) { + fprintf(stderr,"%d : ",i); + errorMsg1s("Error in accept. Retrying"); + } + } + if (news < 0) { + errorMsg1s("Error in accept. Retrying"); + return(-1); + } + } } len = sizeof(struct sockaddr);