Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
fairblue
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Container Registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
hosting
chat
fairblue
Commits
e15de759
Commit
e15de759
authored
10 years ago
by
Chad Pilkey
Browse files
Options
Downloads
Patches
Plain Diff
change the webrtc websocket connection to use an nginx proxy
parent
4b2c0883
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
+16
-6
16 additions, 6 deletions
...button-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
with
16 additions
and
6 deletions
bigbluebutton-client/resources/prod/lib/bbb_webrtc_bridge_sip.js
+
16
−
6
View file @
e15de759
...
...
@@ -140,7 +140,7 @@ function makeWebRTCWebcamRequest(callback)
);
}
function
createUA
(
username
,
server
)
{
function
createUA
(
username
,
server
,
callback
)
{
if
(
userAgent
)
{
console
.
log
(
"
User agent already created
"
);
return
;
...
...
@@ -148,18 +148,28 @@ function createUA(username, server) {
console
.
log
(
"
Creating new user agent
"
);
// VERY IMPORTANT - You must escape the username because spaces will cause the connection to fail
/* VERY IMPORTANT
* - You must escape the username because spaces will cause the connection to fail
* - We are connecting to the websocket through an nginx redirect instead of directly to 5066
*/
var
configuration
=
{
uri
:
'
sip:
'
+
encodeURIComponent
(
username
)
+
'
@
'
+
server
,
wsServers
:
'
ws://
'
+
server
+
'
:5066
'
,
wsServers
:
'
ws://
'
+
server
+
'
/ws
'
,
displayName
:
username
,
register
:
false
,
traceSip
:
false
,
userAgentString
:
"
BigBlueButton
"
,
stunServers
:
"
stun:stun.freeswitch.org
"
userAgentString
:
"
BigBlueButton
"
,
stunServers
:
"
stun:stun.freeswitch.org
"
};
userAgent
=
new
SIP
.
UA
(
configuration
);
userAgent
.
on
(
'
disconnected
'
,
function
()
{
if
(
userAgent
)
{
userAgent
.
stop
();
userAgent
=
null
;
callback
({
'
status
'
:
'
failed
'
,
'
cause
'
:
'
Could not make a WebSocket Connection
'
});
}
});
userAgent
.
start
();
};
...
...
@@ -202,7 +212,7 @@ function webrtc_call(username, voiceBridge, callback) {
console
.
log
(
"
user
"
+
username
+
"
calling to
"
+
voiceBridge
);
if
(
!
userAgent
)
{
createUA
(
username
,
server
);
createUA
(
username
,
server
,
callback
);
}
if
(
userMicMedia
!==
undefined
)
{
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment