mirror of
https://github.com/pion/webrtc.git
synced 2025-10-06 15:46:54 +08:00
18 lines
344 B
Go
18 lines
344 B
Go
package sctp
|
|
|
|
import "github.com/pkg/errors"
|
|
|
|
type ParamForwardTSNSupported struct {
|
|
Raw []byte
|
|
ChunkTypes []ChunkType
|
|
}
|
|
|
|
func (f *ParamForwardTSNSupported) Marshal() ([]byte, error) {
|
|
return nil, errors.New("Not implemented")
|
|
}
|
|
|
|
func (f *ParamForwardTSNSupported) Unmarshal(raw []byte) (Param, error) {
|
|
f.Raw = raw
|
|
return f, nil
|
|
}
|