Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

node-datachannel

Package Overview
Dependencies
Maintainers
1
Versions
87
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-datachannel - npm Package Compare versions

Comparing version
0.32.2
to
0.32.3
+1
-1
CMakeLists.txt

@@ -5,3 +5,3 @@ cmake_minimum_required(VERSION 3.15)

project(node_datachannel VERSION 0.32.2)
project(node_datachannel VERSION 0.32.3)

@@ -8,0 +8,0 @@ # compile_commands.json

@@ -112,2 +112,3 @@ interface Channel {

ufrag: string;
localUfrag: string;
host: string;

@@ -114,0 +115,0 @@ port: number;

{
"name": "node-datachannel",
"version": "0.32.2",
"version": "0.32.3",
"description": "WebRTC For Node.js and Electron. libdatachannel node bindings.",

@@ -5,0 +5,0 @@ "main": "./dist/cjs/lib/index.cjs",

@@ -148,2 +148,3 @@ #include "ice-udp-mux-listener-wrapper.h"

reqObj.Set("ufrag", request.remoteUfrag.c_str());
reqObj.Set("localUfrag", request.localUfrag.c_str());
reqObj.Set("host", request.remoteAddress.c_str());

@@ -150,0 +151,0 @@ reqObj.Set("port", request.remotePort);

@@ -160,2 +160,3 @@ export interface Channel {

ufrag: string;
localUfrag: string;
host: string;

@@ -162,0 +163,0 @@ port: number;