Remove 64 folder limit

This commit is contained in:
Audrius Butkevicius
2015-03-08 16:55:01 +00:00
parent 2e2d479103
commit a10c621e33
2 changed files with 5 additions and 14 deletions

View File

@@ -7,7 +7,7 @@ package protocol
import "fmt"
type IndexMessage struct {
Folder string // max:64
Folder string
Files []FileInfo
Flags uint32
Options []Option // max:64
@@ -85,7 +85,7 @@ type ResponseMessage struct {
type ClusterConfigMessage struct {
ClientName string // max:64
ClientVersion string // max:64
Folders []Folder // max:64
Folders []Folder
Options []Option // max:64
}