mirror of
https://github.com/pion/webrtc.git
synced 2025-10-22 06:39:29 +08:00
8 lines
182 B
Go
8 lines
182 B
Go
package webrtc
|
|
|
|
// DataChannelParameters describes the configuration of the DataChannel.
|
|
type DataChannelParameters struct {
|
|
Label string `json:"label"`
|
|
ID uint16 `json:"id"`
|
|
}
|