mirror of
https://github.com/giongto35/cloud-game.git
synced 2026-07-25 11:03:56 +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
|
|
}
|