Source File
param_forward_tsn_supported.go
Belonging Package
github.com/pion/sctp
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MITpackage sctp// At the initialization of the association, the sender of the INIT or// INIT ACK chunk MAY include this OPTIONAL parameter to inform its peer// that it is able to support the Forward TSN chunk//// 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1 2 3 4 5 6 7 8 9 0 1// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+// | Parameter Type = 49152 | Parameter Length = 4 |// +-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+type paramForwardTSNSupported struct {paramHeader}func ( *paramForwardTSNSupported) () ([]byte, error) {.typ = forwardTSNSupp.raw = []byte{}return .paramHeader.marshal()}func ( *paramForwardTSNSupported) ( []byte) (param, error) {:= .paramHeader.unmarshal()if != nil {return nil,}return , nil}
![]() |
The pages are generated with Golds v0.8.2. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |