10 lines
293 B
Go
10 lines
293 B
Go
|
package webrtc
|
||
|
|
||
|
// ICECandidateInit is used to serialize ice candidates
|
||
|
type ICECandidateInit struct {
|
||
|
Candidate string `json:"candidate"`
|
||
|
SDPMid *string `json:"sdpMid"`
|
||
|
SDPMLineIndex *uint16 `json:"sdpMLineIndex"`
|
||
|
UsernameFragment *string `json:"usernameFragment"`
|
||
|
}
|