mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
13 lines
449 B
Go
13 lines
449 B
Go
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"`
|
|
MaxRetransmits *uint16 `json:"maxRetransmits"`
|
|
Negotiated bool `json:"negotiated"`
|
|
}
|