Archived
2
0
This repository has been archived on 2024-06-24. You can view files and clone it, but cannot push or open issues or pull requests.
neko-custom/server/internal/webrtc/peer.go

39 lines
834 B
Go
Raw Normal View History

2020-01-25 04:47:37 +13:00
package webrtc
import (
2020-02-04 03:46:30 +13:00
"sync"
2021-02-15 05:30:24 +13:00
"github.com/pion/webrtc/v3"
2020-01-25 04:47:37 +13:00
)
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
}
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.PeerConnectionStateClosed {
2020-01-25 04:47:37 +13:00
if err := peer.connection.Close(); err != nil {
return err
}
}
return nil
}