2020-01-25 04:47:37 +13:00
|
|
|
package webrtc
|
|
|
|
|
|
|
|
import (
|
2020-02-04 03:46:30 +13:00
|
|
|
"sync"
|
|
|
|
|
2020-01-25 04:47:37 +13:00
|
|
|
"github.com/pion/webrtc/v2"
|
|
|
|
)
|
|
|
|
|
|
|
|
type Peer struct {
|
2020-04-05 19:07:45 +12:00
|
|
|
id string
|
|
|
|
api *webrtc.API
|
|
|
|
engine *webrtc.MediaEngine
|
|
|
|
manager *WebRTCManager
|
|
|
|
settings *webrtc.SettingEngine
|
|
|
|
connection *webrtc.PeerConnection
|
|
|
|
configuration *webrtc.Configuration
|
|
|
|
mu sync.Mutex
|
2020-01-25 04:47:37 +13:00
|
|
|
}
|
|
|
|
|
2020-02-27 01:46:10 +13:00
|
|
|
func (peer *Peer) SignalAnswer(sdp string) error {
|
2020-02-13 12:13:33 +13:00
|
|
|
return peer.connection.SetRemoteDescription(webrtc.SessionDescription{SDP: sdp, Type: webrtc.SDPTypeAnswer})
|
2020-01-25 04:47:37 +13:00
|
|
|
}
|
|
|
|
|
|
|
|
func (peer *Peer) WriteData(v interface{}) error {
|
2020-02-04 03:46:30 +13:00
|
|
|
peer.mu.Lock()
|
|
|
|
defer peer.mu.Unlock()
|
2020-01-25 04:47:37 +13:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (peer *Peer) Destroy() error {
|
|
|
|
if peer.connection != nil && peer.connection.ConnectionState() == webrtc.PeerConnectionStateConnected {
|
|
|
|
if err := peer.connection.Close(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|