mediasoup 3.12.9 → 3.12.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -212,11 +212,11 @@ export declare class WebRtcTransport<WebRtcTransportAppData extends AppData = Ap
|
|
|
212
212
|
*/
|
|
213
213
|
routerClosed(): void;
|
|
214
214
|
/**
|
|
215
|
-
* Called when closing the associated WebRtcServer.
|
|
215
|
+
* Called when closing the associated listenServer (WebRtcServer).
|
|
216
216
|
*
|
|
217
217
|
* @private
|
|
218
218
|
*/
|
|
219
|
-
|
|
219
|
+
listenServerClosed(): void;
|
|
220
220
|
/**
|
|
221
221
|
* Get WebRtcTransport stats.
|
|
222
222
|
*
|
|
@@ -125,11 +125,11 @@ class WebRtcTransport extends Transport_1.Transport {
|
|
|
125
125
|
super.routerClosed();
|
|
126
126
|
}
|
|
127
127
|
/**
|
|
128
|
-
* Called when closing the associated WebRtcServer.
|
|
128
|
+
* Called when closing the associated listenServer (WebRtcServer).
|
|
129
129
|
*
|
|
130
130
|
* @private
|
|
131
131
|
*/
|
|
132
|
-
|
|
132
|
+
listenServerClosed() {
|
|
133
133
|
if (this.closed) {
|
|
134
134
|
return;
|
|
135
135
|
}
|
package/node/lib/Worker.js
CHANGED
|
@@ -90,7 +90,7 @@ class Worker extends EnhancedEventEmitter_1.EnhancedEventEmitter {
|
|
|
90
90
|
// options
|
|
91
91
|
{
|
|
92
92
|
env: {
|
|
93
|
-
MEDIASOUP_VERSION: '3.12.
|
|
93
|
+
MEDIASOUP_VERSION: '3.12.10',
|
|
94
94
|
// Let the worker process inherit all environment variables, useful
|
|
95
95
|
// if a custom and not in the path GCC is used so the user can set
|
|
96
96
|
// LD_LIBRARY_PATH environment variable for runtime.
|
package/node/lib/index.d.ts
CHANGED
package/node/lib/index.js
CHANGED
|
@@ -412,6 +412,10 @@ test('router.createWebRtcTransport() with webRtcServer succeeds and webRtcServer
|
|
|
412
412
|
expect(onObserverWebRtcTransportUnhandled).toHaveBeenCalledTimes(1);
|
|
413
413
|
expect(onObserverWebRtcTransportUnhandled).toHaveBeenCalledWith(transport);
|
|
414
414
|
expect(transport.closed).toBe(true);
|
|
415
|
+
expect(transport.iceState).toBe('closed');
|
|
416
|
+
expect(transport.iceSelectedTuple).toBe(undefined);
|
|
417
|
+
expect(transport.dtlsState).toBe('closed');
|
|
418
|
+
expect(transport.sctpState).toBe(undefined);
|
|
415
419
|
expect(webRtcServer.webRtcTransportsForTesting.size).toBe(0);
|
|
416
420
|
expect(router.transportsForTesting.size).toBe(0);
|
|
417
421
|
await expect(worker.dump())
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "mediasoup",
|
|
3
|
-
"version": "3.12.
|
|
3
|
+
"version": "3.12.10",
|
|
4
4
|
"description": "Cutting Edge WebRTC Video Conferencing",
|
|
5
5
|
"contributors": [
|
|
6
6
|
"Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
|
|
@@ -105,7 +105,7 @@
|
|
|
105
105
|
"eslint": "^8.46.0",
|
|
106
106
|
"eslint-plugin-jest": "^27.2.3",
|
|
107
107
|
"jest": "^29.6.2",
|
|
108
|
-
"marked": "^7.0.
|
|
108
|
+
"marked": "^7.0.2",
|
|
109
109
|
"open-cli": "^7.2.0",
|
|
110
110
|
"pick-port": "^1.0.1",
|
|
111
111
|
"sctp": "^1.0.0",
|