dsc-itv2-client 1.0.11 → 1.0.12
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/package.json +1 -1
- package/src/ITV2Client.js +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dsc-itv2-client",
|
|
3
3
|
"author": "fajitacat",
|
|
4
|
-
"version": "1.0.
|
|
4
|
+
"version": "1.0.12",
|
|
5
5
|
"description": "Reverse engineered DSC ITV2 Protocol Client Library for TL280R Communicator - Monitor and control DSC alarm panels",
|
|
6
6
|
"main": "src/index.js",
|
|
7
7
|
"type": "module",
|
package/src/ITV2Client.js
CHANGED
|
@@ -375,7 +375,7 @@ export class ITV2Client extends EventEmitter {
|
|
|
375
375
|
} else if (this.handshakeState === 'SENT_REQUEST_ACCESS') {
|
|
376
376
|
// Panel ACKed our REQUEST_ACCESS - session established!
|
|
377
377
|
this.handshakeState = 'ESTABLISHED';
|
|
378
|
-
this._logMinimal(
|
|
378
|
+
this._logMinimal(`[Handshake] Session established (Type ${this.detectedEncryptionType} encryption)`);
|
|
379
379
|
this._log(`[Handshake] *** SESSION ESTABLISHED ***`);
|
|
380
380
|
this._log(`[Handshake] Encryption Type: ${this.detectedEncryptionType}`);
|
|
381
381
|
this._log(`[Handshake] SEND key: ${this.session.derivedSendKey?.toString('hex')}`);
|