torrent/bencode/bytes.go

19 lines
291 B
Go
Raw Normal View History

2016-08-26 04:51:09 +00:00
package bencode
type Bytes []byte
var (
_ Unmarshaler = &Bytes{}
_ Marshaler = &Bytes{}
_ Marshaler = Bytes{}
2016-08-26 04:51:09 +00:00
)
func (me *Bytes) UnmarshalBencode(b []byte) error {
*me = append([]byte(nil), b...)
return nil
}
func (me Bytes) MarshalBencode() ([]byte, error) {
return me, nil
2016-08-26 04:51:09 +00:00
}