Update of /cvsroot/squeak/squeak/platforms/unix/plugins/SocketPlugin
In directory sc8-pr-cvs1:/tmp/cvs-serv26458/unix/plugins/SocketPlugin
Modified Files:
Tag: ned-branch
sqUnixSocket.c
Log Message:
Copied from Ian's 3.6g-2 sources, with recent patches by Ned Konz
Index: sqUnixSocket.c
===================================================================
RCS file: /cvsroot/squeak/squeak/platforms/unix/plugins/SocketPlugin/sqUnixSocket.c,v
retrieving revision 1.12
retrieving revision 1.12.2.1
diff -C2 -d -r1.12 -r1.12.2.1
*** sqUnixSocket.c 16 Sep 2003 07:56:51 -0000 1.12
--- sqUnixSocket.c 21 Nov 2003 02:40:18 -0000 1.12.2.1
***************
*** 37,41 ****
/* Author: Ian...@in...
*
! * Last edited: 2003-09-12 21:05:50 by piumarta on emilia.inria.fr
*
* Support for BSD-style "accept" primitives contributed by:
--- 37,41 ----
/* Author: Ian...@in...
*
! * Last edited: 2003-09-16 20:06:06 by piumarta on emilia.inria.fr
*
* Support for BSD-style "accept" primitives contributed by:
***************
*** 590,593 ****
--- 590,594 ----
return Invalid;
}
+ #if 0
/* check for connection closed by peer */
if (SOCKETSTATE(s) == Connected)
***************
*** 601,604 ****
--- 602,606 ----
}
}
+ #endif
FPRINTF((stderr, "socketStatus(%d) -> %d\n", SOCKET(s), SOCKETSTATE(s)));
return SOCKETSTATE(s);
|