summaryrefslogtreecommitdiff
path: root/vendor/github.com/pion/sctp/param_forward_tsn_supported.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pion/sctp/param_forward_tsn_supported.go')
-rw-r--r--vendor/github.com/pion/sctp/param_forward_tsn_supported.go28
1 files changed, 28 insertions, 0 deletions
diff --git a/vendor/github.com/pion/sctp/param_forward_tsn_supported.go b/vendor/github.com/pion/sctp/param_forward_tsn_supported.go
new file mode 100644
index 0000000..62de155
--- /dev/null
+++ b/vendor/github.com/pion/sctp/param_forward_tsn_supported.go
@@ -0,0 +1,28 @@
+package 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 (f *paramForwardTSNSupported) marshal() ([]byte, error) {
+ f.typ = forwardTSNSupp
+ f.raw = []byte{}
+ return f.paramHeader.marshal()
+}
+
+func (f *paramForwardTSNSupported) unmarshal(raw []byte) (param, error) {
+ err := f.paramHeader.unmarshal(raw)
+ if err != nil {
+ return nil, err
+ }
+ return f, nil
+}