summaryrefslogtreecommitdiff
path: root/vendor/github.com/pion/sctp/error_cause_invalid_mandatory_parameter.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pion/sctp/error_cause_invalid_mandatory_parameter.go')
-rw-r--r--vendor/github.com/pion/sctp/error_cause_invalid_mandatory_parameter.go19
1 files changed, 19 insertions, 0 deletions
diff --git a/vendor/github.com/pion/sctp/error_cause_invalid_mandatory_parameter.go b/vendor/github.com/pion/sctp/error_cause_invalid_mandatory_parameter.go
new file mode 100644
index 0000000..3da8b47
--- /dev/null
+++ b/vendor/github.com/pion/sctp/error_cause_invalid_mandatory_parameter.go
@@ -0,0 +1,19 @@
+package sctp
+
+// errorCauseInvalidMandatoryParameter represents an SCTP error cause
+type errorCauseInvalidMandatoryParameter struct {
+ errorCauseHeader
+}
+
+func (e *errorCauseInvalidMandatoryParameter) marshal() ([]byte, error) {
+ return e.errorCauseHeader.marshal()
+}
+
+func (e *errorCauseInvalidMandatoryParameter) unmarshal(raw []byte) error {
+ return e.errorCauseHeader.unmarshal(raw)
+}
+
+// String makes errorCauseInvalidMandatoryParameter printable
+func (e *errorCauseInvalidMandatoryParameter) String() string {
+ return e.errorCauseHeader.String()
+}