You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
331 B
Go
19 lines
331 B
Go
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
type entity struct {
|
|
t entityType
|
|
size uint32
|
|
body []byte
|
|
}
|
|
|
|
func (e entity) String() string {
|
|
if len(e.body) < 30 {
|
|
return fmt.Sprintf("{entity type: %s size: %d data: %x}", e.t, e.size, e.body)
|
|
}
|
|
return fmt.Sprintf("{entity type: %s size: %d data: %x...}", e.t, e.size, e.body[:27])
|
|
}
|