Support DataChannel protocol in Go

Relates to #748
This commit is contained in:
Sean DuBois
2019-09-27 00:38:17 -07:00
committed by Sean DuBois
parent 6088c7beed
commit d692ddfa54
8 changed files with 24 additions and 6 deletions

View File

@@ -3,6 +3,7 @@ package webrtc
// DataChannelParameters describes the configuration of the DataChannel.
type DataChannelParameters struct {
Label string `json:"label"`
Protocol string `json:"protocol"`
ID uint16 `json:"id"`
Ordered bool `json:"ordered"`
MaxPacketLifeTime *uint16 `json:"maxPacketLifeTime"`