drachtio-srf 4.5.18 → 4.5.19
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.
- package/lib/drachtio-agent.js +2 -1
- package/lib/wire-protocol.js +1 -1
- package/package.json +5 -5
package/lib/drachtio-agent.js
CHANGED
package/lib/wire-protocol.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
const Emitter = require('events');
|
|
2
2
|
const net = require('net');
|
|
3
3
|
const tls = require('tls');
|
|
4
|
-
const
|
|
4
|
+
const uuidV4 = require('random-uuid') ;
|
|
5
5
|
const debug = require('debug')('drachtio:agent');
|
|
6
6
|
const noop = require('node-noop').noop;
|
|
7
7
|
const CRLF = '\r\n' ;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "drachtio-srf",
|
|
3
|
-
"version": "4.5.
|
|
3
|
+
"version": "4.5.19",
|
|
4
4
|
"description": "drachtio signaling resource framework",
|
|
5
5
|
"main": "lib/srf.js",
|
|
6
6
|
"scripts": {
|
|
@@ -25,19 +25,19 @@
|
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"debug": "^3.2.7",
|
|
27
27
|
"delegates": "^0.1.0",
|
|
28
|
+
"eslint": "^8.30.0",
|
|
29
|
+
"eslint-plugin-promise": "^6.1.1",
|
|
28
30
|
"node-noop": "^0.0.1",
|
|
29
31
|
"only": "^0.0.2",
|
|
32
|
+
"random-uuid": "^1.0.2",
|
|
30
33
|
"sdp-transform": "^2.14.1",
|
|
31
34
|
"short-uuid": "^4.2.0",
|
|
32
35
|
"sip-methods": "^0.3.0",
|
|
33
36
|
"sip-status": "^0.1.0",
|
|
34
|
-
"utils-merge": "^1.0.0"
|
|
35
|
-
"uuid": "^8.3.2"
|
|
37
|
+
"utils-merge": "^1.0.0"
|
|
36
38
|
},
|
|
37
39
|
"devDependencies": {
|
|
38
40
|
"config": "^3.3.7",
|
|
39
|
-
"eslint": "^7.32.0",
|
|
40
|
-
"eslint-plugin-promise": "^4.3.1",
|
|
41
41
|
"mocha": "^9.2.2",
|
|
42
42
|
"nyc": "^15.1.0",
|
|
43
43
|
"should": "^13.2.3",
|