Bump max file size and count

This commit is contained in:
Jakob Borg
2014-07-05 11:05:45 +02:00
parent 3d7d4d845a
commit 2d272a3cac
3 changed files with 8 additions and 8 deletions

View File

@@ -6,7 +6,7 @@ package protocol
type IndexMessage struct {
Repository string // max:64
Files []FileInfo // max:1000000
Files []FileInfo // max:10000000
}
type FileInfo struct {
@@ -14,7 +14,7 @@ type FileInfo struct {
Flags uint32
Modified int64
Version uint64
Blocks []BlockInfo // max:100000
Blocks []BlockInfo // max:1000000
}
type BlockInfo struct {