mirror of
https://github.com/ossrs/srs.git
synced 2025-02-15 04:42:04 +00:00
9 lines
138 B
Go
9 lines
138 B
Go
package sctp
|
|
|
|
type chunk interface {
|
|
unmarshal(raw []byte) error
|
|
marshal() ([]byte, error)
|
|
check() (bool, error)
|
|
|
|
valueLength() int
|
|
}
|