@@ -87,6 +87,9 @@ UA = function(configuration) {
87
87
ict : { }
88
88
} ;
89
89
90
+ // Custom UA empty object for high level use
91
+ this . data = { } ;
92
+
90
93
this . transportRecoverAttempts = 0 ;
91
94
this . transportRecoveryTimer = null ;
92
95
@@ -314,7 +317,7 @@ UA.prototype.stop = function() {
314
317
/**
315
318
* Connect to the WS server if status = STATUS_INIT.
316
319
* Resume UA after being closed.
317
- *
320
+ * @returns { Boolean } true if the start action takes place, false otherwise
318
321
*/
319
322
UA . prototype . start = function ( ) {
320
323
var server ;
@@ -324,14 +327,18 @@ UA.prototype.start = function() {
324
327
if ( this . status === C . STATUS_INIT ) {
325
328
server = this . getNextWsServer ( ) ;
326
329
new JsSIP . Transport ( this , server ) ;
330
+ return true ;
327
331
} else if ( this . status === C . STATUS_USER_CLOSED ) {
328
332
this . logger . log ( 'resuming' ) ;
329
333
this . status = C . STATUS_READY ;
330
334
this . transport . connect ( ) ;
335
+ return true ;
331
336
} else if ( this . status === C . STATUS_READY ) {
332
337
this . logger . log ( 'UA is in READY status, not resuming' ) ;
338
+ return false ;
333
339
} else {
334
340
this . logger . error ( 'Connection is down. Auto-Recovery system is trying to connect' ) ;
341
+ return false ;
335
342
}
336
343
} ;
337
344
@@ -508,7 +515,7 @@ UA.prototype.newTransaction = function(transaction) {
508
515
509
516
510
517
/**
511
- * new Transaction
518
+ * Transaction destroyed.
512
519
* @private
513
520
* @param {JsSIP.Transaction } transaction.
514
521
*/
@@ -556,7 +563,7 @@ UA.prototype.receiveRequest = function(request) {
556
563
// Create the server transaction
557
564
if ( method === JsSIP . C . INVITE ) {
558
565
new JsSIP . Transactions . InviteServerTransaction ( request , this ) ;
559
- } else if ( method !== JsSIP . C . ACK ) {
566
+ } else if ( method !== JsSIP . C . ACK && method !== JsSIP . C . CANCEL ) {
560
567
new JsSIP . Transactions . NonInviteServerTransaction ( request , this ) ;
561
568
}
562
569
0 commit comments