Files
webrtc/datachannelparameters.go
Yutaka Takeda 0e9e1b0c48 Update sctp and datachannel revs
Resolves #334
2019-02-18 21:27:31 +01:00

11 lines
357 B
Go

package webrtc
// DataChannelParameters describes the configuration of the DataChannel.
type DataChannelParameters struct {
Label string `json:"label"`
ID uint16 `json:"id"`
Ordered bool `json:"ordered"`
MaxPacketLifeTime *uint16 `json:"maxPacketLifeTime"`
MaxRetransmits *uint16 `json:"maxRetransmits"`
}