30 lines
552 B
Go
30 lines
552 B
Go
package webrtc
|
|
|
|
import (
|
|
"github.com/pion/webrtc/v4"
|
|
)
|
|
|
|
// OutboundDataChannel is an outgoing data channel.
|
|
type OutboundDataChannel struct {
|
|
Label string
|
|
|
|
dataChan *webrtc.DataChannel
|
|
}
|
|
|
|
func (c *OutboundDataChannel) setup(p *PeerConnection) error {
|
|
var err error
|
|
c.dataChan, err = p.wr.CreateDataChannel(c.Label, &webrtc.DataChannelInit{
|
|
Ordered: new(false),
|
|
})
|
|
if err != nil {
|
|
return err
|
|
}
|
|
|
|
return nil
|
|
}
|
|
|
|
// Write writes data to the channel.
|
|
func (c *OutboundDataChannel) Write(data []byte) {
|
|
c.dataChan.Send(data) //nolint:errcheck
|
|
}
|