rebuild protobuf to add {Initialize,Features}.state

This commit is contained in:
Pavol Rusnak 2018-02-09 17:46:30 +01:00
parent 30e5c80956
commit e256281a99
No known key found for this signature in database
GPG Key ID: 91F3B339B9A02A3D
2 changed files with 4 additions and 0 deletions

View File

@ -32,5 +32,6 @@ class Features(p.MessageType):
24: ('fw_patch', p.UVarintType, 0),
25: ('fw_vendor', p.UnicodeType, 0),
26: ('fw_vendor_keys', p.BytesType, 0),
27: ('state', p.BytesType, 0),
}
MESSAGE_WIRE_TYPE = 17

View File

@ -4,4 +4,7 @@ from .. import protobuf as p
class Initialize(p.MessageType):
FIELDS = {
1: ('state', p.BytesType, 0),
}
MESSAGE_WIRE_TYPE = 0