Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
S
sfu
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Alain Takoudjou
sfu
Commits
bfdc22ff
Commit
bfdc22ff
authored
May 23, 2020
by
Juliusz Chroboczek
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Maintain local connections explicitly.
parent
4699c338
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
50 additions
and
21 deletions
+50
-21
client.go
client.go
+10
-21
conn.go
conn.go
+40
-0
No files found.
client.go
View file @
bfdc22ff
...
...
@@ -612,28 +612,12 @@ func delUpConn(c *client, id string) bool {
}
}
type
clientId
struct
{
client
*
client
id
string
}
cids
:=
make
([]
clientId
,
0
)
clients
:=
c
.
group
.
getClients
(
c
)
for
_
,
cc
:=
range
clients
{
cc
.
mu
.
Lock
()
for
_
,
otherconn
:=
range
cc
.
down
{
if
otherconn
.
remote
==
conn
{
cids
=
append
(
cids
,
clientId
{
cc
,
otherconn
.
id
})
}
}
cc
.
mu
.
Unlock
()
}
go
func
(
cids
[]
clientId
)
{
for
_
,
cid
:=
range
cids
{
cid
.
client
.
action
(
delConnAction
{
cid
.
id
})
local
:=
conn
.
getLocal
()
go
func
()
{
for
_
,
l
:=
range
local
{
l
.
Close
()
}
}(
cids
)
}()
conn
.
pc
.
Close
()
delete
(
c
.
up
,
id
)
...
...
@@ -691,17 +675,21 @@ func addDownConn(c *client, id string, remote *upConnection) (*downConnection, e
}
conn
:=
&
downConnection
{
id
:
id
,
client
:
c
,
pc
:
pc
,
remote
:
remote
,
}
c
.
mu
.
Lock
()
defer
c
.
mu
.
Unlock
()
if
c
.
down
[
id
]
!=
nil
||
(
c
.
up
!=
nil
&&
c
.
up
[
id
]
!=
nil
)
{
conn
.
pc
.
Close
()
return
nil
,
errors
.
New
(
"Adding duplicate connection"
)
}
c
.
down
[
id
]
=
conn
remote
.
addLocal
(
conn
)
return
conn
,
nil
}
...
...
@@ -717,6 +705,7 @@ func delDownConn(c *client, id string) bool {
return
false
}
conn
.
remote
.
delLocal
(
conn
)
for
_
,
track
:=
range
conn
.
tracks
{
found
:=
track
.
remote
.
delLocal
(
track
)
if
!
found
{
...
...
conn.go
View file @
bfdc22ff
...
...
@@ -100,12 +100,47 @@ type upConnection struct {
tracks
[]
*
upTrack
labels
map
[
string
]
string
iceCandidates
[]
*
webrtc
.
ICECandidateInit
mu
sync
.
Mutex
local
[]
*
downConnection
}
func
(
up
*
upConnection
)
getPC
()
*
webrtc
.
PeerConnection
{
return
up
.
pc
}
func
(
up
*
upConnection
)
addLocal
(
local
*
downConnection
)
{
up
.
mu
.
Lock
()
defer
up
.
mu
.
Unlock
()
for
_
,
t
:=
range
up
.
local
{
if
t
==
local
{
up
.
mu
.
Unlock
()
return
}
}
up
.
local
=
append
(
up
.
local
,
local
)
}
func
(
up
*
upConnection
)
delLocal
(
local
*
downConnection
)
bool
{
up
.
mu
.
Lock
()
defer
up
.
mu
.
Unlock
()
for
i
,
l
:=
range
up
.
local
{
if
l
==
local
{
up
.
local
=
append
(
up
.
local
[
:
i
],
up
.
local
[
i
+
1
:
]
...
)
return
true
}
}
return
false
}
func
(
up
*
upConnection
)
getLocal
()
[]
*
downConnection
{
up
.
mu
.
Lock
()
defer
up
.
mu
.
Unlock
()
local
:=
make
([]
*
downConnection
,
len
(
up
.
local
))
copy
(
local
,
up
.
local
)
return
local
}
func
(
up
*
upConnection
)
addICECandidate
(
candidate
*
webrtc
.
ICECandidateInit
)
error
{
if
up
.
pc
.
RemoteDescription
()
!=
nil
{
return
up
.
pc
.
AddICECandidate
(
*
candidate
)
...
...
@@ -224,12 +259,17 @@ func (down *downTrack) GetMaxBitrate(now uint64) uint64 {
type
downConnection
struct
{
id
string
client
*
client
pc
*
webrtc
.
PeerConnection
remote
*
upConnection
tracks
[]
*
downTrack
iceCandidates
[]
*
webrtc
.
ICECandidateInit
}
func
(
down
*
downConnection
)
Close
()
error
{
return
down
.
client
.
action
(
delConnAction
{
down
.
id
})
}
func
(
down
*
downConnection
)
getPC
()
*
webrtc
.
PeerConnection
{
return
down
.
pc
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment