Skip to content

Commit 3acc474

Browse files
committed
Add turn configuration parameters for RTCPeerConnection
* new configuration parameters: turn_server, turn_username, turn_password
1 parent 9fccaf5 commit 3acc474

File tree

3 files changed

+82
-9
lines changed

3 files changed

+82
-9
lines changed

src/MediaSession.js

+8-2
Original file line numberDiff line numberDiff line change
@@ -105,8 +105,14 @@ JsSIP.MediaSession.prototype = {
105105
var
106106
session = this,
107107
sent = false,
108-
stun_config = 'stun:'+this.session.ua.configuration.stun_server,
109-
servers = [{"url": stun_config}];
108+
stun_uri = this.session.ua.configuration.stun_server,
109+
turn_uri = this.session.ua.configuration.turn_uri,
110+
turn_password = this.session.ua.configuration.turn_password,
111+
servers = [ {"url": stun_uri} ];
112+
113+
if (turn_uri) {
114+
servers.push({"url": turn_uri, "credential": turn_password});
115+
}
110116

111117
this.peerConnection = new webkitRTCPeerConnection({"iceServers": servers});
112118

src/UA.js

+43-7
Original file line numberDiff line numberDiff line change
@@ -631,7 +631,7 @@ JsSIP.UA.prototype.loadConfig = function(configuration) {
631631

632632
// Session parameters
633633
no_answer_timeout: 60,
634-
stun_server: 'stun.l.google.com:19302',
634+
stun_server: 'stun:stun.l.google.com:19302',
635635

636636
// Loggin parameters
637637
trace_sip: false,
@@ -696,6 +696,14 @@ JsSIP.UA.prototype.loadConfig = function(configuration) {
696696
return false;
697697
}
698698

699+
// Turn
700+
if (settings.turn_server) {
701+
if (!settings.turn_username || !settings.turn_password) {
702+
console.error('TURN username and password must be specified');
703+
return false;
704+
}
705+
}
706+
699707
// Post Configuration Process
700708

701709
// Instance-id for GRUU
@@ -741,6 +749,14 @@ JsSIP.UA.prototype.loadConfig = function(configuration) {
741749

742750
}
743751

752+
// TURN URI
753+
if (settings.turn_server) {
754+
uri = JsSIP.grammar.parse(settings.turn_server, 'turn_URI');
755+
settings.turn_uri = uri.scheme + ':';
756+
settings.turn_uri += settings.turn_username + '@';
757+
settings.turn_uri += settings.turn_server.substr(uri.scheme.length + 1);
758+
}
759+
744760
contact = {
745761
uri: {value: 'sip:' + uri.user + '@' + settings.via_host + ';transport=ws', writable: false, configurable: false}
746762
};
@@ -795,6 +811,10 @@ JsSIP.UA.configuration_skeleton = (function() {
795811
"hack_ip_in_contact", //false
796812
"password",
797813
"stun_server",
814+
"turn_server",
815+
"turn_username",
816+
"turn_password",
817+
"turn_uri",
798818
"no_answer_timeout", // 30 seconds.
799819
"register_expires", // 600 seconds.
800820
"trace_sip",
@@ -913,12 +933,28 @@ JsSIP.UA.configuration_check = {
913933
}
914934
},
915935
stun_server: function(stun_server) {
916-
var parsed;
917-
918-
parsed = JsSIP.grammar.parse(stun_server, 'hostport');
919-
920-
if(parsed === -1) {
921-
console.log(JsSIP.c.LOG_UA +'Invalid stun_server: ' + stun_server);
936+
if(JsSIP.grammar.parse(stun_server, 'stun_URI') === -1) {
937+
return false;
938+
} else {
939+
return true;
940+
}
941+
},
942+
turn_server: function(turn_server) {
943+
if(JsSIP.grammar.parse(turn_server, 'turn_URI') === -1) {
944+
return false;
945+
} else {
946+
return true;
947+
}
948+
},
949+
turn_username: function(turn_username) {
950+
if(JsSIP.grammar.parse(turn_username, 'user') === -1) {
951+
return false;
952+
} else {
953+
return true;
954+
}
955+
},
956+
turn_password: function(turn_password) {
957+
if(JsSIP.grammar.parse(turn_password, 'password') === -1) {
922958
return false;
923959
} else {
924960
return true;

src/grammar/src/grammar.pegjs

+31
Original file line numberDiff line numberDiff line change
@@ -688,6 +688,37 @@ header_value = (TEXT_UTF8char / UTF8_CONT / LWS)*
688688

689689
message_body = OCTET*
690690

691+
692+
// STUN URI (draft-nandakumar-rtcweb-stun-uri)
693+
694+
stun_URI = stun_scheme ":" stun_host_port
695+
696+
stun_scheme = scheme: ("stuns" / "stun") {
697+
data.scheme = scheme; }
698+
699+
stun_host_port = stun_host ( ":" port )?
700+
701+
stun_host = host: (reg_name / IPv4address / IPv6reference) {
702+
data.host = host.join(''); }
703+
704+
reg_name = ( stun_unreserved / escaped / sub_delims )*
705+
706+
stun_unreserved = ALPHA / DIGIT / "-" / "." / "_" / "~"
707+
708+
sub_delims = "!" / "$" / "&" / "'" / "(" / ")" / "*" / "+" / "," / ";" / "="
709+
710+
711+
// TURN URI (draft-petithuguenin-behave-turn-uris)
712+
713+
turn_URI = turn_scheme ":" stun_host_port ( "?transport=" transport )?
714+
715+
turn_scheme = scheme: ("turns" / "turn") {
716+
data.scheme = scheme; }
717+
718+
turn_transport = transport ("udp" / "tcp" / unreserved*) {
719+
data.transport = transport; }
720+
721+
691722
// Lazy uri
692723

693724
lazy_uri = (uri_scheme ':')? user ('@' hostport)? uri_parameters

0 commit comments

Comments
 (0)