Commit cb7d78c6 authored by Jim Fulton's avatar Jim Fulton

Upped the protocol number, since new server methods were added.

parent c1245d49
...@@ -337,12 +337,16 @@ class Connection(smac.SizedMessageAsyncConnection, object): ...@@ -337,12 +337,16 @@ class Connection(smac.SizedMessageAsyncConnection, object):
# receiveBlobStart # receiveBlobStart
# receiveBlobChunk # receiveBlobChunk
# receiveBlobStop # receiveBlobStop
#
# Z309 -- named after the ZODB release 3.9
# New server methods:
# restorea, iterator_start, iterator_next,
# iterator_record_start, iterator_record_next,
# iterator_gc
# XXX add blob methods
# Protocol variables: # Protocol variables:
# Our preferred protocol. # Our preferred protocol.
current_protocol = "Z308" current_protocol = "Z309"
# If we're a client, an exhaustive list of the server protocols we # If we're a client, an exhaustive list of the server protocols we
# can accept. # can accept.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment