Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
N
neo
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Stefane Fermigier
neo
Commits
85bad0b7
Commit
85bad0b7
authored
Aug 27, 2012
by
Julien Muchembled
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Simplify protocol version
parent
531a7df7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
10 deletions
+6
-10
neo/lib/protocol.py
neo/lib/protocol.py
+6
-10
No files found.
neo/lib/protocol.py
View file @
85bad0b7
...
@@ -24,8 +24,7 @@ try:
...
@@ -24,8 +24,7 @@ try:
except
ImportError
:
except
ImportError
:
pass
pass
# The protocol version (major, minor).
PROTOCOL_VERSION
=
1
PROTOCOL_VERSION
=
(
15
,
1
)
# Size restrictions.
# Size restrictions.
MIN_PACKET_SIZE
=
10
MIN_PACKET_SIZE
=
10
...
@@ -570,21 +569,18 @@ class PPTID(PStructItem):
...
@@ -570,21 +569,18 @@ class PPTID(PStructItem):
value
=
None
value
=
None
return
value
return
value
class
PProtocol
(
P
StructItem
):
class
PProtocol
(
P
Number
):
"""
"""
The protocol version definition
The protocol version definition
"""
"""
def
__init__
(
self
,
name
):
PStructItem
.
__init__
(
self
,
name
,
'!LL'
)
def
_encode
(
self
,
writer
,
version
):
def
_encode
(
self
,
writer
,
version
):
writer
(
self
.
pack
(
*
version
))
writer
(
self
.
pack
(
version
))
def
_decode
(
self
,
reader
):
def
_decode
(
self
,
reader
):
major
,
minor
=
self
.
unpack
(
reader
(
self
.
size
))
version
=
self
.
unpack
(
reader
(
self
.
size
))
if
(
major
,
minor
)
!=
PROTOCOL_VERSION
:
if
version
!=
(
PROTOCOL_VERSION
,)
:
raise
ProtocolError
(
'protocol version mismatch'
)
raise
ProtocolError
(
'protocol version mismatch'
)
return
(
major
,
minor
)
return
version
class
PChecksum
(
PItem
):
class
PChecksum
(
PItem
):
"""
"""
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment