| 123456789101112131415161718192021222324252627282930 |
- package bencode
- import (
- "errors"
- "fmt"
- )
- type Bytes []byte
- var (
- _ Unmarshaler = (*Bytes)(nil)
- _ Marshaler = (*Bytes)(nil)
- _ Marshaler = Bytes{}
- )
- func (me *Bytes) UnmarshalBencode(b []byte) error {
- *me = append([]byte(nil), b...)
- return nil
- }
- func (me Bytes) MarshalBencode() ([]byte, error) {
- if len(me) == 0 {
- return nil, errors.New("marshalled Bytes should not be zero-length")
- }
- return me, nil
- }
- func (me Bytes) GoString() string {
- return fmt.Sprintf("bencode.Bytes(%q)", []byte(me))
- }
|