Files
webrtc/sessiondescription.go
Max Hawkins 0647ce9c26 Remove rtc prefix from filenames
Relates to #408
2019-02-17 16:22:56 -08:00

15 lines
319 B
Go

package webrtc
import (
"github.com/pions/sdp"
)
// SessionDescription is used to expose local and remote session descriptions.
type SessionDescription struct {
Type SDPType `json:"type"`
Sdp string `json:"sdp"`
// This will never be initialized by callers, internal use only
parsed *sdp.SessionDescription
}