Source File
chunk_shutdown.go
Belonging Package
github.com/pion/sctp
// SPDX-FileCopyrightText: 2023 The Pion community <https://pion.ly>// SPDX-License-Identifier: MITpackage sctpimport ()/*chunkShutdown represents an SCTP Chunk of type chunkShutdown0 1 2 30 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+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+| Type = 7 | Chunk Flags | Length = 8 |+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+| Cumulative TSN Ack |+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+-+.*/type chunkShutdown struct {chunkHeadercumulativeTSNAck uint32}const (cumulativeTSNAckLength = 4)// Shutdown chunk errors.var (ErrInvalidChunkSize = errors.New("invalid chunk size")ErrChunkTypeNotShutdown = errors.New("ChunkType is not of type SHUTDOWN"))func ( *chunkShutdown) ( []byte) error {if := .chunkHeader.unmarshal(); != nil {return}if .typ != ctShutdown {return fmt.Errorf("%w: actually is %s", ErrChunkTypeNotShutdown, .typ.String())}if len(.raw) != cumulativeTSNAckLength {return ErrInvalidChunkSize}.cumulativeTSNAck = binary.BigEndian.Uint32(.raw[0:])return nil}func ( *chunkShutdown) () ([]byte, error) {:= make([]byte, cumulativeTSNAckLength)binary.BigEndian.PutUint32([0:], .cumulativeTSNAck).typ = ctShutdown.raw =return .chunkHeader.marshal()}func ( *chunkShutdown) () ( bool, error) {return false, nil}// String makes chunkShutdown printable.func ( *chunkShutdown) () string {return .chunkHeader.String()}
![]() |
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. |