1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-02-15 04:42:04 +00:00
srs/trunk/3rdparty/srs-bench/vendor/github.com/pion/sctp/chunk.go

10 lines
138 B
Go
Raw Normal View History

package sctp
type chunk interface {
unmarshal(raw []byte) error
marshal() ([]byte, error)
check() (bool, error)
valueLength() int
}