mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
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"`
|
|
}
|