mirror of
https://github.com/jech/galene.git
synced 2024-11-22 16:45:58 +01:00
Make API a method of group.
This commit is contained in:
parent
22c6ad6b8c
commit
938d231b30
3 changed files with 8 additions and 4 deletions
4
group.go
4
group.go
|
@ -47,6 +47,10 @@ var groups struct {
|
||||||
api *webrtc.API
|
api *webrtc.API
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func (g *group) API() *webrtc.API {
|
||||||
|
return groups.api
|
||||||
|
}
|
||||||
|
|
||||||
func addGroup(name string, desc *groupDescription) (*group, error) {
|
func addGroup(name string, desc *groupDescription) (*group, error) {
|
||||||
groups.mu.Lock()
|
groups.mu.Lock()
|
||||||
defer groups.mu.Unlock()
|
defer groups.mu.Unlock()
|
||||||
|
|
|
@ -109,8 +109,8 @@ type rtpDownConnection struct {
|
||||||
iceCandidates []*webrtc.ICECandidateInit
|
iceCandidates []*webrtc.ICECandidateInit
|
||||||
}
|
}
|
||||||
|
|
||||||
func newDownConn(id string, remote upConnection) (*rtpDownConnection, error) {
|
func newDownConn(c client, id string, remote upConnection) (*rtpDownConnection, error) {
|
||||||
pc, err := groups.api.NewPeerConnection(iceConfiguration())
|
pc, err := c.Group().API().NewPeerConnection(iceConfiguration())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
@ -371,7 +371,7 @@ func (up *rtpUpConnection) complete() bool {
|
||||||
}
|
}
|
||||||
|
|
||||||
func newUpConn(c client, id string) (*rtpUpConnection, error) {
|
func newUpConn(c client, id string) (*rtpUpConnection, error) {
|
||||||
pc, err := groups.api.NewPeerConnection(iceConfiguration())
|
pc, err := c.Group().API().NewPeerConnection(iceConfiguration())
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
|
@ -302,7 +302,7 @@ func getConn(c *webClient, id string) iceConnection {
|
||||||
}
|
}
|
||||||
|
|
||||||
func addDownConn(c *webClient, id string, remote upConnection) (*rtpDownConnection, error) {
|
func addDownConn(c *webClient, id string, remote upConnection) (*rtpDownConnection, error) {
|
||||||
conn, err := newDownConn(id, remote)
|
conn, err := newDownConn(c, id, remote)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, err
|
return nil, err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue