// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>
// SPDX-License-Identifier: MIT

package sctp

type paramECNCapable struct {
	paramHeader
}

func ( *paramECNCapable) () ([]byte, error) {
	.typ = ecnCapable
	.raw = []byte{}

	return .paramHeader.marshal()
}

func ( *paramECNCapable) ( []byte) (param, error) {
	 := .paramHeader.unmarshal()
	if  != nil {
		return nil, 
	}

	return , nil
}