22 lines
338 B
Go
22 lines
338 B
Go
![]() |
package peer_protocol
|
||
|
|
||
|
import (
|
||
|
"encoding/binary"
|
||
|
"io"
|
||
|
)
|
||
|
|
||
|
type Integer uint32
|
||
|
|
||
|
func (i *Integer) Read(r io.Reader) error {
|
||
|
return binary.Read(r, binary.BigEndian, i)
|
||
|
}
|
||
|
|
||
|
// It's perfectly fine to cast these to an int. TODO: Or is it?
|
||
|
func (i Integer) Int() int {
|
||
|
return int(i)
|
||
|
}
|
||
|
|
||
|
func (i Integer) Uint64() uint64 {
|
||
|
return uint64(i)
|
||
|
}
|