34
34
*/
35
35
var NonInviteClientTransaction = function ( request_sender , request , transport ) {
36
36
var via ,
37
+ via_transport ,
37
38
events = [ 'stateChanged' ] ;
38
39
39
40
this . type = C . NON_INVITE_CLIENT ;
@@ -44,7 +45,17 @@ var NonInviteClientTransaction = function(request_sender, request, transport) {
44
45
45
46
this . logger = request_sender . ua . getLogger ( 'jssip.transaction.nict' , this . id ) ;
46
47
47
- via = 'SIP/2.0/' + ( request_sender . ua . configuration . hack_via_tcp ? 'TCP' : transport . server . scheme ) ;
48
+ if ( request_sender . ua . configuration . hack_via_tcp ) {
49
+ via_transport = 'TCP' ;
50
+ }
51
+ else if ( request_sender . ua . configuration . hack_via_ws ) {
52
+ via_transport = 'WS' ;
53
+ }
54
+ else {
55
+ via_transport = transport . server . scheme ;
56
+ }
57
+
58
+ via = 'SIP/2.0/' + via_transport ;
48
59
via += ' ' + request_sender . ua . configuration . via_host + ';branch=' + this . id ;
49
60
50
61
this . request . setHeader ( 'via' , via ) ;
@@ -138,6 +149,7 @@ NonInviteClientTransaction.prototype.receiveResponse = function(response) {
138
149
var InviteClientTransaction = function ( request_sender , request , transport ) {
139
150
var via ,
140
151
tr = this ,
152
+ via_transport ,
141
153
events = [ 'stateChanged' ] ;
142
154
143
155
this . type = C . INVITE_CLIENT ;
@@ -148,7 +160,17 @@ var InviteClientTransaction = function(request_sender, request, transport) {
148
160
149
161
this . logger = request_sender . ua . getLogger ( 'jssip.transaction.ict' , this . id ) ;
150
162
151
- via = 'SIP/2.0/' + ( request_sender . ua . configuration . hack_via_tcp ? 'TCP' : transport . server . scheme ) ;
163
+ if ( request_sender . ua . configuration . hack_via_tcp ) {
164
+ via_transport = 'TCP' ;
165
+ }
166
+ else if ( request_sender . ua . configuration . hack_via_ws ) {
167
+ via_transport = 'WS' ;
168
+ }
169
+ else {
170
+ via_transport = transport . server . scheme ;
171
+ }
172
+
173
+ via = 'SIP/2.0/' + via_transport ;
152
174
via += ' ' + request_sender . ua . configuration . via_host + ';branch=' + this . id ;
153
175
154
176
this . request . setHeader ( 'via' , via ) ;
@@ -329,7 +351,8 @@ InviteClientTransaction.prototype.receiveResponse = function(response) {
329
351
* @param {JsSIP.Transport } transport
330
352
*/
331
353
var AckClientTransaction = function ( request_sender , request , transport ) {
332
- var via ;
354
+ var via ,
355
+ via_transport ;
333
356
334
357
this . transport = transport ;
335
358
this . id = 'z9hG4bK' + Math . floor ( Math . random ( ) * 10000000 ) ;
@@ -338,7 +361,17 @@ var AckClientTransaction = function(request_sender, request, transport) {
338
361
339
362
this . logger = request_sender . ua . getLogger ( 'jssip.transaction.nict' , this . id ) ;
340
363
341
- via = 'SIP/2.0/' + ( request_sender . ua . configuration . hack_via_tcp ? 'TCP' : transport . server . scheme ) ;
364
+ if ( request_sender . ua . configuration . hack_via_tcp ) {
365
+ via_transport = 'TCP' ;
366
+ }
367
+ else if ( request_sender . ua . configuration . hack_via_ws ) {
368
+ via_transport = 'WS' ;
369
+ }
370
+ else {
371
+ via_transport = transport . server . scheme ;
372
+ }
373
+
374
+ via = 'SIP/2.0/' + via_transport ;
342
375
via += ' ' + request_sender . ua . configuration . via_host + ';branch=' + this . id ;
343
376
344
377
this . request . setHeader ( 'via' , via ) ;
@@ -398,7 +431,7 @@ NonInviteServerTransaction.prototype.timer_J = function() {
398
431
NonInviteServerTransaction . prototype . onTransportError = function ( ) {
399
432
if ( ! this . transportError ) {
400
433
this . transportError = true ;
401
-
434
+
402
435
this . logger . log ( 'transport error occurred, deleting non-INVITE server transaction ' + this . id ) ;
403
436
404
437
window . clearTimeout ( this . J ) ;
@@ -483,7 +516,7 @@ var InviteServerTransaction = function(request, ua) {
483
516
ua . newTransaction ( this ) ;
484
517
485
518
this . resendProvisionalTimer = null ;
486
-
519
+
487
520
request . reply ( 100 ) ;
488
521
489
522
this . initEvents ( events ) ;
@@ -501,7 +534,7 @@ InviteServerTransaction.prototype.timer_H = function() {
501
534
if ( this . state === C . STATUS_COMPLETED ) {
502
535
this . logger . warn ( 'transactions' , 'ACK for INVITE server transaction was never received, call will be terminated' ) ;
503
536
}
504
-
537
+
505
538
this . stateChanged ( C . STATUS_TERMINATED ) ;
506
539
this . ua . destroyTransaction ( this ) ;
507
540
} ;
@@ -531,11 +564,11 @@ InviteServerTransaction.prototype.onTransportError = function() {
531
564
window . clearInterval ( this . resendProvisionalTimer ) ;
532
565
this . resendProvisionalTimer = null ;
533
566
}
534
-
567
+
535
568
window . clearTimeout ( this . L ) ;
536
569
window . clearTimeout ( this . H ) ;
537
570
window . clearTimeout ( this . I ) ;
538
-
571
+
539
572
this . stateChanged ( C . STATUS_TERMINATED ) ;
540
573
this . ua . destroyTransaction ( this ) ;
541
574
}
@@ -576,7 +609,7 @@ InviteServerTransaction.prototype.receiveResponse = function(status_code, respon
576
609
this . L = window . setTimeout ( function ( ) {
577
610
tr . timer_L ( ) ;
578
611
} , JsSIP . Timers . TIMER_L ) ;
579
-
612
+
580
613
if ( this . resendProvisionalTimer !== null ) {
581
614
window . clearInterval ( this . resendProvisionalTimer ) ;
582
615
this . resendProvisionalTimer = null ;
@@ -601,7 +634,7 @@ InviteServerTransaction.prototype.receiveResponse = function(status_code, respon
601
634
window . clearInterval ( this . resendProvisionalTimer ) ;
602
635
this . resendProvisionalTimer = null ;
603
636
}
604
-
637
+
605
638
if ( ! this . transport . send ( response ) ) {
606
639
this . onTransportError ( ) ;
607
640
if ( onFailure ) {
0 commit comments