mirror of
https://github.com/minio/minio.git
synced 2024-12-26 15:15:55 -05:00
Merge pull request #180 from abperiasamy/donut
This commit is contained in:
commit
ab80c0ce12
@ -23,7 +23,43 @@ import (
|
||||
"io"
|
||||
)
|
||||
|
||||
type Header struct{}
|
||||
/*
|
||||
** DONUT v1 Spec **
|
||||
|
||||
BlockStart uint32 // Magic="MINI"
|
||||
VersionMajor uint16
|
||||
VersionMinor uint16
|
||||
VersionPatch uint16
|
||||
VersionReserved uint16
|
||||
Reserved uint64
|
||||
GobHeaderLen uint32
|
||||
GobHeader Sizeof(GobHeader)
|
||||
BlockData uint32 // Magic="DATA"
|
||||
Data []byte
|
||||
BlockLen uint64
|
||||
BlockEnd uint32 // Magic="INIM"
|
||||
|
||||
*/
|
||||
|
||||
type DonutHeader struct {
|
||||
BlockStart uint32 // Magic="MINI"
|
||||
VersionMajor uint16
|
||||
VersionMinor uint16
|
||||
VersionPatch uint16
|
||||
VersionReserved uint16
|
||||
Reserved uint64
|
||||
GobHeaderLen uint32
|
||||
}
|
||||
|
||||
type DonutGobHeader struct {
|
||||
DataLen uint64
|
||||
}
|
||||
|
||||
type DonutFooter struct {
|
||||
BlockLen uint64
|
||||
BlockEnd uint32 // Magic="INIM"
|
||||
}
|
||||
|
||||
type Donut struct {
|
||||
file io.Writer
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user