after challenge register with creds should stay tls if it started that way (#70)

This commit is contained in:
Dave Horton
2024-06-24 15:09:10 -04:00
committed by GitHub
parent 8f59ecbe4a
commit a6d15bc7aa
2 changed files with 6 additions and 6 deletions

8
package-lock.json generated
View File

@@ -18,7 +18,7 @@
"debug": "^4.3.4", "debug": "^4.3.4",
"drachtio-mw-registration-parser": "^0.1.0", "drachtio-mw-registration-parser": "^0.1.0",
"drachtio-mw-response-time": "^1.0.2", "drachtio-mw-response-time": "^1.0.2",
"drachtio-srf": "^4.5.38", "drachtio-srf": "^4.5.39",
"pino": "^8.20.0", "pino": "^8.20.0",
"short-uuid": "^4.2.2" "short-uuid": "^4.2.2"
}, },
@@ -1631,9 +1631,9 @@
"integrity": "sha512-d+DtKuqhpkSBBkRfwcgS3x26T3lrdgo86yVWZ4wy+K8RtS1faT3hgLBq9EPEYSDkcw76r4klvdDWPhTrPqGAQw==" "integrity": "sha512-d+DtKuqhpkSBBkRfwcgS3x26T3lrdgo86yVWZ4wy+K8RtS1faT3hgLBq9EPEYSDkcw76r4klvdDWPhTrPqGAQw=="
}, },
"node_modules/drachtio-srf": { "node_modules/drachtio-srf": {
"version": "4.5.38", "version": "4.5.39",
"resolved": "https://registry.npmjs.org/drachtio-srf/-/drachtio-srf-4.5.38.tgz", "resolved": "https://registry.npmjs.org/drachtio-srf/-/drachtio-srf-4.5.39.tgz",
"integrity": "sha512-dEafgn1OPfkc30Gq3JwJBF4Q7O96fsuqMnE2OO1NqRG0DkwworMIPsusWDo0ePbi+NH74rMjLPmVyC/owA0HXg==", "integrity": "sha512-iYjLqJVcSFLEflHBbYTXtSsyKtGLHHiteORUTinrsUhJboTbRXaUPUOoFYFaxGY5Cn+Grueg7D1D9frT6Od1YA==",
"dependencies": { "dependencies": {
"debug": "^3.2.7", "debug": "^3.2.7",
"delegates": "^0.1.0", "delegates": "^0.1.0",

View File

@@ -12,7 +12,7 @@
], ],
"scripts": { "scripts": {
"start": "node app", "start": "node app",
"test": "NODE_ENV=test JAMBONES_HOSTING=1 HTTP_POOL=1 JWT_SECRET=foobarbazzle DRACHTIO_HOST=127.0.0.1 DRACHTIO_PORT=9022 DRACHTIO_SECRET=cymru JAMBONES_MYSQL_HOST=127.0.0.1 JAMBONES_MYSQL_PORT=3306 JAMBONES_MYSQL_USER=jambones_test JAMBONES_MYSQL_PASSWORD=jambones_test JAMBONES_MYSQL_DATABASE=jambones_test JAMBONES_REDIS_HOST=127.0.0.1 JAMBONES_REDIS_PORT=16379 JAMBONES_LOGLEVEL=error ENABLE_METRICS=0 HTTP_PORT=3000 JAMBONES_SBCS=172.39.0.10 JAMBONES_FREESWITCH=127.0.0.1:8022:ClueCon:docker-host JAMBONES_TIME_SERIES_HOST=127.0.0.1 JAMBONES_NETWORK_CIDR=172.39.0.0/16 node test/ ", "test": "NODE_ENV=test JAMBONES_HOSTING=1 HTTP_POOL=1 JWT_SECRET=foobarbazzle DRACHTIO_HOST=127.0.0.1 DRACHTIO_PORT=9022 DRACHTIO_SECRET=cymru JAMBONES_MYSQL_HOST=127.0.0.1 JAMBONES_MYSQL_PORT=3306 JAMBONES_MYSQL_USER=jambones_test JAMBONES_MYSQL_PASSWORD=jambones_test JAMBONES_MYSQL_DATABASE=jambones_test JAMBONES_REDIS_HOST=127.0.0.1 JAMBONES_REDIS_PORT=16379 JAMBONES_LOGLEVEL=debug ENABLE_METRICS=0 HTTP_PORT=3000 JAMBONES_SBCS=172.39.0.10 JAMBONES_FREESWITCH=127.0.0.1:8022:ClueCon:docker-host JAMBONES_TIME_SERIES_HOST=127.0.0.1 JAMBONES_NETWORK_CIDR=172.39.0.0/16 node test/ ",
"coverage": "./node_modules/.bin/nyc --reporter html --report-dir ./coverage npm run test", "coverage": "./node_modules/.bin/nyc --reporter html --report-dir ./coverage npm run test",
"jslint": "eslint app.js lib" "jslint": "eslint app.js lib"
}, },
@@ -36,7 +36,7 @@
"debug": "^4.3.4", "debug": "^4.3.4",
"drachtio-mw-registration-parser": "^0.1.0", "drachtio-mw-registration-parser": "^0.1.0",
"drachtio-mw-response-time": "^1.0.2", "drachtio-mw-response-time": "^1.0.2",
"drachtio-srf": "^4.5.38", "drachtio-srf": "^4.5.39",
"pino": "^8.20.0", "pino": "^8.20.0",
"short-uuid": "^4.2.2" "short-uuid": "^4.2.2"
}, },