Socket
Socket
Sign inDemoInstall

jingle

Package Overview
Dependencies
27
Maintainers
2
Versions
68
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 3.0.2 to 3.0.3

3

index.js

@@ -154,3 +154,4 @@ var util = require('util');

initiator: true,
parent: this
parent: this,
iceServers: this.iceServers
});

@@ -157,0 +158,0 @@

{
"name": "jingle",
"description": "Generic Jingle via WebRTC session manager.",
"version": "3.0.2",
"version": "3.0.3",
"author": "Lance Stout <lance@andyet.net>",

@@ -28,3 +28,3 @@ "bugs": "https://github.com/otalk/jingle.js/issues",

"testling": "^1.7.1",
"travis-multirunner": "^2.5.0",
"travis-multirunner": "^4.0.0",
"uglify-js": "^2.4.15",

@@ -48,2 +48,3 @@ "webrtc-adapter-test": "^0.1.4"

"build": "make build",
"test": "jshint .",
"test-travis": "test/run-tests"

@@ -50,0 +51,0 @@ },

@@ -53,2 +53,3 @@ var test = require('tape');

test('filetransfer', function (t) {
var sendFile = getFile();
var managers = setupSessionManagers();

@@ -83,4 +84,3 @@ managers[1].on('incoming', function (session) {

});
var sendFile = getFile();
sess.start(sendFile);
});

@@ -182,3 +182,3 @@ var test = require('tape');

t.same(jingle.iceServers, [
{url: 'turn:example.com'}
{urls: 'turn:example.com'}
]);

@@ -185,0 +185,0 @@

@@ -31,2 +31,3 @@ var test = require('tape');

} else {
delete data.id;
t.same(data, {

@@ -89,2 +90,3 @@ to: 'peer@example.com',

} else {
delete data.id;
t.same(data, {

@@ -91,0 +93,0 @@ to: 'peer@example.com',

@@ -61,2 +61,3 @@ var test = require('tape');

// the session instead.
delete data.id;
t.same(data, {

@@ -121,2 +122,3 @@ to: 'peer@example.com',

} else {
delete data.id;
t.same(data, {

@@ -198,2 +200,3 @@ to: 'peer@example.com',

jingle.on('send', function (data) {
delete data.id;
t.same(data, {

@@ -249,2 +252,3 @@ to: 'peer@example.com',

} else {
delete data.id;
t.same(data, {

@@ -301,2 +305,3 @@ to: 'peer@example.com',

jingle.on('send', function (data) {
delete data.id;
if (!started) {

@@ -355,2 +360,3 @@ t.same(data, {

jingle.on('send', function (data) {
delete data.id;
t.same(data, {

@@ -395,2 +401,3 @@ to: 'peer@example.com',

jingle.on('send', function (data) {
delete data.id;
t.same(data, {

@@ -397,0 +404,0 @@ to: 'peer@example.com',

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc