mirror of
https://github.com/anyproto/any-sync.git
synced 2025-06-08 05:57:03 +09:00
Update secureservice with new proto version
This commit is contained in:
parent
12ea073b98
commit
ab5caa097e
1 changed files with 3 additions and 1 deletions
|
@ -30,12 +30,14 @@ var (
|
|||
// ProtoVersion 3 - acl with breaking changes / multiplayer
|
||||
// ProtoVersion 4 - new sync compatible version
|
||||
// ProtoVersion 5 - sync with no entry space
|
||||
// ProtoVersion 6 - sync with key value messages
|
||||
CompatibleVersion = uint32(4)
|
||||
ProtoVersion = uint32(5)
|
||||
KeyValueVersion = uint32(6)
|
||||
)
|
||||
|
||||
var (
|
||||
compatibleVersions = []uint32{CompatibleVersion, ProtoVersion}
|
||||
compatibleVersions = []uint32{CompatibleVersion, ProtoVersion, KeyValueVersion}
|
||||
)
|
||||
|
||||
func New() SecureService {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue