mirror of
https://github.com/m1k1o/neko.git
synced 2024-07-24 14:40:50 +12:00
35 lines
689 B
Go
35 lines
689 B
Go
package webrtc
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/pion/webrtc/v2"
|
|
)
|
|
|
|
type Peer struct {
|
|
id string
|
|
manager *WebRTCManager
|
|
connection *webrtc.PeerConnection
|
|
mu sync.Mutex
|
|
}
|
|
|
|
func (peer *Peer) SignalAnswer(sdp string) error {
|
|
return peer.connection.SetRemoteDescription(webrtc.SessionDescription{SDP: sdp, Type: webrtc.SDPTypeAnswer})
|
|
}
|
|
|
|
func (peer *Peer) WriteData(v interface{}) error {
|
|
peer.mu.Lock()
|
|
defer peer.mu.Unlock()
|
|
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
|
|
}
|