Files
webrtc/internal/sctp/param_forward_tsn_supported.go
Sean DuBois 13b02984e3 Fix all linting errors
Disabled gocylco for now, need to use gometalinter to disable
conditionally. There are also a lot more linters we could use, but they
cause too many issues to start today.
2018-07-21 12:27:38 -07:00

17 lines
330 B
Go

package sctp
type paramForwardTSNSupported struct {
paramHeader
}
func (f *paramForwardTSNSupported) marshal() ([]byte, error) {
f.typ = forwardTSNSupp
f.raw = []byte{}
return f.paramHeader.marshal()
}
func (f *paramForwardTSNSupported) unmarshal(raw []byte) (param, error) {
f.paramHeader.unmarshal(raw)
return f, nil
}