[Zodb-checkins] CVS: ZODB3/ZEO/zrpc - smac.py:1.40.10.1
client.py:1.27.10.1
Jeremy Hylton
cvs-admin at zope.org
Tue Nov 25 16:10:07 EST 2003
Update of /cvs-repository/ZODB3/ZEO/zrpc
In directory cvs.zope.org:/tmp/cvs-serv1135/ZEO/zrpc
Modified Files:
Tag: Zope-2_8-devel-branch
smac.py client.py
Log Message:
Merge ZEO changes from zodb33-devel-branch.
=== ZODB3/ZEO/zrpc/smac.py 1.40 => 1.40.10.1 ===
--- ZODB3/ZEO/zrpc/smac.py:1.40 Thu Oct 2 18:14:03 2003
+++ ZODB3/ZEO/zrpc/smac.py Tue Nov 25 16:09:36 2003
@@ -16,7 +16,7 @@
This class extends the basic asyncore layer with a record-marking
layer. The message_output() method accepts an arbitrary sized string
as its argument. It sends over the wire the length of the string
-encoded using struct.pack('>i') and the string itself. The receiver
+encoded using struct.pack('>I') and the string itself. The receiver
passes the original string to message_input().
This layer also supports an optional message authentication code
=== ZODB3/ZEO/zrpc/client.py 1.27 => 1.27.10.1 ===
--- ZODB3/ZEO/zrpc/client.py:1.27 Thu Oct 2 14:17:20 2003
+++ ZODB3/ZEO/zrpc/client.py Tue Nov 25 16:09:36 2003
@@ -85,6 +85,7 @@
def close(self):
"""Prevent ConnectionManager from opening new connections"""
self.closed = 1
+ ThreadedAsync.remove_loop_callback(self.set_async)
self.cond.acquire()
try:
t = self.thread
More information about the Zodb-checkins
mailing list