summaryrefslogtreecommitdiff
path: root/vendor/github.com/pion/webrtc/v3/datachannelmessage.go
diff options
context:
space:
mode:
Diffstat (limited to 'vendor/github.com/pion/webrtc/v3/datachannelmessage.go')
-rw-r--r--vendor/github.com/pion/webrtc/v3/datachannelmessage.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/github.com/pion/webrtc/v3/datachannelmessage.go b/vendor/github.com/pion/webrtc/v3/datachannelmessage.go
new file mode 100644
index 0000000..1e3c63b
--- /dev/null
+++ b/vendor/github.com/pion/webrtc/v3/datachannelmessage.go
@@ -0,0 +1,10 @@
+package webrtc
+
+// DataChannelMessage represents a message received from the
+// data channel. IsString will be set to true if the incoming
+// message is of the string type. Otherwise the message is of
+// a binary type.
+type DataChannelMessage struct {
+ IsString bool
+ Data []byte
+}