Skip to content

Commit 177f38d

Browse files
committed
- UA: don't create a NonInviteServerTransaction for CANCEL (fixes #248).
- UA: add UA.data={} attribute. - UA: connect() returns now a Boolean indicating whether the start action takes place or not.
1 parent f9ef522 commit 177f38d

File tree

1 file changed

+10
-3
lines changed

1 file changed

+10
-3
lines changed

src/UA.js

+10-3
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,9 @@ UA = function(configuration) {
8787
ict: {}
8888
};
8989

90+
// Custom UA empty object for high level use
91+
this.data = {};
92+
9093
this.transportRecoverAttempts = 0;
9194
this.transportRecoveryTimer = null;
9295

@@ -314,7 +317,7 @@ UA.prototype.stop = function() {
314317
/**
315318
* Connect to the WS server if status = STATUS_INIT.
316319
* Resume UA after being closed.
317-
*
320+
* @returns {Boolean} true if the start action takes place, false otherwise
318321
*/
319322
UA.prototype.start = function() {
320323
var server;
@@ -324,14 +327,18 @@ UA.prototype.start = function() {
324327
if (this.status === C.STATUS_INIT) {
325328
server = this.getNextWsServer();
326329
new JsSIP.Transport(this, server);
330+
return true;
327331
} else if(this.status === C.STATUS_USER_CLOSED) {
328332
this.logger.log('resuming');
329333
this.status = C.STATUS_READY;
330334
this.transport.connect();
335+
return true;
331336
} else if (this.status === C.STATUS_READY) {
332337
this.logger.log('UA is in READY status, not resuming');
338+
return false;
333339
} else {
334340
this.logger.error('Connection is down. Auto-Recovery system is trying to connect');
341+
return false;
335342
}
336343
};
337344

@@ -508,7 +515,7 @@ UA.prototype.newTransaction = function(transaction) {
508515

509516

510517
/**
511-
* new Transaction
518+
* Transaction destroyed.
512519
* @private
513520
* @param {JsSIP.Transaction} transaction.
514521
*/
@@ -556,7 +563,7 @@ UA.prototype.receiveRequest = function(request) {
556563
// Create the server transaction
557564
if(method === JsSIP.C.INVITE) {
558565
new JsSIP.Transactions.InviteServerTransaction(request, this);
559-
} else if(method !== JsSIP.C.ACK) {
566+
} else if(method !== JsSIP.C.ACK && method !== JsSIP.C.CANCEL) {
560567
new JsSIP.Transactions.NonInviteServerTransaction(request, this);
561568
}
562569

0 commit comments

Comments
 (0)