Add flags and options for future extensibility

This commit is contained in:
Jakob Borg
2015-03-25 21:20:04 +01:00
parent 1a4398cc55
commit d2ec40bb67
2 changed files with 64 additions and 6 deletions

View File

@@ -101,12 +101,15 @@ func (o *ClusterConfigMessage) GetOption(key string) string {
type Folder struct {
ID string // max:64
Devices []Device
Flags uint32
Options []Option // max:64
}
type Device struct {
ID []byte // max:32
Flags uint32
MaxLocalVersion int64
Flags uint32
Options []Option // max:64
}
type Option struct {