[Zope-Checkins] CVS: ZODB3/ZEO/zrpc - client.py:1.25.16.5 server.py:1.8.20.3

Jeremy Hylton cvs-admin at zope.org
Thu Oct 23 20:24:06 EDT 2003


Update of /cvs-repository/ZODB3/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv1534/ZEO/zrpc

Modified Files:
      Tag: Zope-2_7-branch
	client.py server.py 
Log Message:
Never intended to keep the TCP_NODELAY option enabled.

Testing showed that it made no difference.


=== ZODB3/ZEO/zrpc/client.py 1.25.16.4 => 1.25.16.5 ===
--- ZODB3/ZEO/zrpc/client.py:1.25.16.4	Tue Oct  7 11:24:55 2003
+++ ZODB3/ZEO/zrpc/client.py	Thu Oct 23 20:24:05 2003
@@ -441,7 +441,6 @@
             self.close()
             return
         self.sock.setblocking(0)
-        self.sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
         self.state = "opened"
 
     def connect_procedure(self):


=== ZODB3/ZEO/zrpc/server.py 1.8.20.2 => 1.8.20.3 ===
--- ZODB3/ZEO/zrpc/server.py:1.8.20.2	Tue Oct  7 11:24:55 2003
+++ ZODB3/ZEO/zrpc/server.py	Thu Oct 23 20:24:06 2003
@@ -55,6 +55,5 @@
         except socket.error, msg:
             log("accepted failed: %s" % msg)
             return
-        sock.setsockopt(socket.IPPROTO_TCP, socket.TCP_NODELAY, 1)
         c = self.factory(sock, addr)
         log("connect from %s: %s" % (repr(addr), c))




More information about the Zope-Checkins mailing list