@@ -186,7 +186,6 @@ JsSIP.Registrator.prototype = {
186
186
extraHeaders = extraHeaders || [ ] ;
187
187
188
188
this . registered = false ;
189
- this . ua . emit ( 'unregistered' , this . ua ) ;
190
189
191
190
// Clear the registration timer.
192
191
window . clearTimeout ( this . registrationTimer ) ;
@@ -216,21 +215,39 @@ JsSIP.Registrator.prototype = {
216
215
* @private
217
216
*/
218
217
this . receiveResponse = function ( response ) {
219
- console . log ( JsSIP . C . LOG_REGISTRATOR + response . status_code + ' ' + response . reason_phrase + ' received to unregister request' ) ;
218
+ var cause ;
219
+
220
+ switch ( true ) {
221
+ case / ^ 1 [ 0 - 9 ] { 2 } $ / . test ( response . status_code ) :
222
+ // Ignore provisional responses.
223
+ break ;
224
+ case / ^ 2 [ 0 - 9 ] { 2 } $ / . test ( response . status_code ) :
225
+ this . unregistered ( response ) ;
226
+ break ;
227
+ default :
228
+ cause = JsSIP . Utils . sipErrorCause ( response . status_code ) ;
229
+
230
+ if ( cause ) {
231
+ cause = JsSIP . C . causes [ cause ] ;
232
+ } else {
233
+ cause = JsSIP . C . causes . SIP_FAILURE_CODE ;
234
+ }
235
+ this . unregistered ( response , cause ) ;
236
+ }
220
237
} ;
221
238
222
239
/**
223
240
* @private
224
241
*/
225
242
this . onRequestTimeout = function ( ) {
226
- console . log ( JsSIP . C . LOG_REGISTRATOR + 'Request Timeout received for unregister request' ) ;
243
+ this . unregistered ( null , JsSIP . C . causes . REQUEST_TIMEOUT ) ;
227
244
} ;
228
245
229
246
/**
230
247
* @private
231
248
*/
232
249
this . onTransportError = function ( ) {
233
- console . log ( JsSIP . C . LOG_REGISTRATOR + 'Transport Error received for unregister request' ) ;
250
+ this . unregistered ( null , JsSIP . C . causes . CONNECTION_ERROR ) ;
234
251
} ;
235
252
236
253
request_sender . send ( ) ;
@@ -242,14 +259,28 @@ JsSIP.Registrator.prototype = {
242
259
registrationFailure : function ( response , cause ) {
243
260
if ( this . registered ) {
244
261
this . registered = false ;
245
- this . ua . emit ( 'unregistered' , this . ua ) ;
262
+ this . ua . emit ( 'unregistered' , this . ua , {
263
+ response : response || null ,
264
+ cause : cause
265
+ } ) ;
246
266
}
247
267
this . ua . emit ( 'registrationFailed' , this . ua , {
248
268
response : response || null ,
249
269
cause : cause
250
270
} ) ;
251
271
} ,
252
272
273
+ /**
274
+ * @private
275
+ */
276
+ unregistered : function ( response , cause ) {
277
+ this . registered = false ;
278
+ this . ua . emit ( 'unregistered' , this . ua , {
279
+ response : response || null ,
280
+ cause : cause || null
281
+ } ) ;
282
+ } ,
283
+
253
284
/**
254
285
* @private
255
286
*/
0 commit comments