chunk.go 138 B

123456789
  1. package sctp
  2. type chunk interface {
  3. unmarshal(raw []byte) error
  4. marshal() ([]byte, error)
  5. check() (bool, error)
  6. valueLength() int
  7. }