forked from mirrors/tar-split
tar/storage: package docs
This commit is contained in:
parent
959f450dca
commit
e045daf0b0
1 changed files with 12 additions and 0 deletions
12
tar/storage/doc.go
Normal file
12
tar/storage/doc.go
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
/*
|
||||||
|
storage is for metadata of a tar archive.
|
||||||
|
|
||||||
|
Packing and unpacking the Entries of the stream. The types of streams are
|
||||||
|
either segments of raw bytes (for the raw headers and various padding) and for
|
||||||
|
an entry marking a file payload.
|
||||||
|
|
||||||
|
The raw bytes are stored precisely in the packed (marshalled) Entry. Where as
|
||||||
|
the file payload marker include the name of the file, size, and crc64 checksum
|
||||||
|
(for basic file integrity).
|
||||||
|
*/
|
||||||
|
package storage
|
Loading…
Reference in a new issue