New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

sip.js

Package Overview
Dependencies
Maintainers
3
Versions
71
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

sip.js - npm Package Compare versions

Comparing version 0.7.6 to 0.7.7

2

bower.json
{
"name": "sip.js",
"version": "0.7.6",
"version": "0.7.7",
"authors": [

@@ -5,0 +5,0 @@ "James Criscuolo <james@onsip.com>",

@@ -5,3 +5,3 @@ {

"description": "A simple, intuitive, and powerful JavaScript signaling library",
"version": "0.7.6",
"version": "0.7.7",
"main": "src/index.js",

@@ -8,0 +8,0 @@ "browser": {

@@ -1178,2 +1178,3 @@ "use strict";

"autostart",
"rtcpMuxPolicy",
"stunServers",

@@ -1579,2 +1580,8 @@ "traceSip",

rtcpMuxPolicy: function(rtcpMuxPolicy) {
if (typeof rtcpMuxPolicy === 'string') {
return rtcpMuxPolicy;
}
},
userAgentString: function(userAgentString) {

@@ -1581,0 +1588,0 @@ if (typeof userAgentString === 'string') {

@@ -421,4 +421,12 @@ "use strict";

this.peerConnection = new SIP.WebRTC.RTCPeerConnection({'iceServers': servers});
var connConfig = {
iceServers: servers
};
if (config.rtcpMuxPolicy) {
connConfig.rtcpMuxPolicy = config.rtcpMuxPolicy;
}
this.peerConnection = new SIP.WebRTC.RTCPeerConnection(connConfig);
// Firefox (35.0.1) sometimes throws on calls to peerConnection.getRemoteStreams

@@ -425,0 +433,0 @@ // even if peerConnection.onaddstream was just called. In order to make

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc