diff options
author | Máximo Cuadros <mcuadros@gmail.com> | 2017-07-27 09:34:58 +0200 |
---|---|---|
committer | Máximo Cuadros <mcuadros@gmail.com> | 2017-07-27 09:34:58 +0200 |
commit | 48900a1c810dd2dac9cb44511e6a2412d3064da6 (patch) | |
tree | fb0042909e7bc55b9862ef2515d84eb1758b5ec7 /utils/binary/read.go | |
parent | e19163e22eb19b352dd022f6edc9d81e1cd7a7ed (diff) | |
download | go-git-48900a1c810dd2dac9cb44511e6a2412d3064da6.tar.gz |
format: idxfile, support for >2Gb packfiles
Diffstat (limited to 'utils/binary/read.go')
-rw-r--r-- | utils/binary/read.go | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/utils/binary/read.go b/utils/binary/read.go index c256ffe..50da1ff 100644 --- a/utils/binary/read.go +++ b/utils/binary/read.go @@ -94,7 +94,17 @@ const ( lengthBits = uint8(7) // subsequent bytes has 7 bits to store the length ) -// ReadUint32 reads 4 bytes and returns them as a Big ndian uint32 +// ReadUint64 reads 8 bytes and returns them as a BigEndian uint32 +func ReadUint64(r io.Reader) (uint64, error) { + var v uint64 + if err := binary.Read(r, binary.BigEndian, &v); err != nil { + return 0, err + } + + return v, nil +} + +// ReadUint32 reads 4 bytes and returns them as a BigEndian uint32 func ReadUint32(r io.Reader) (uint32, error) { var v uint32 if err := binary.Read(r, binary.BigEndian, &v); err != nil { |