summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-06-20 15:11:39 +0200
committerHolger Hans Peter Freyther <holger@moiji-mobile.com>2014-06-20 15:11:39 +0200
commitcc1d2d3e2fa1ac6753124a9d3aea30da63f328e3 (patch)
tree59f447124cf29bc7c87c9741b57a694182fedf41
parentb0fae4c117c5b8a133f834d8bff9c33587ad9a18 (diff)
auth: qop is not included by sipgate as well..
-rw-r--r--callagent/transactions/SIPTransaction.st2
1 files changed, 1 insertions, 1 deletions
diff --git a/callagent/transactions/SIPTransaction.st b/callagent/transactions/SIPTransaction.st
index a3f8bbb..5ddac67 100644
--- a/callagent/transactions/SIPTransaction.st
+++ b/callagent/transactions/SIPTransaction.st
@@ -217,7 +217,7 @@ Object subclass: SIPTransaction [
((auth at: 'algorithm' ifAbsent: ['MD5']) = 'MD5')
ifFalse: [^self wrongAuth: aResp dialog: aDialog].
- ((auth at: 'qop') = 'auth')
+ ((auth at: 'qop' ifAbsent: ['auth']) = 'auth')
ifFalse: [^self wrongAuth: aResp dialog: aDialog].
proxy_authorization := SIPProxyAuthorization new