You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
After upgrade to the version 3.5.0 registration broken with error code: SIP/2.0 400 Bad header field: authorization
Reason is in the qop wrong escaping. Regarding RFC3261 Instead of qop="auth" it should be qop=auth:
An example of the Authorization header field is:
Authorization: Digest username="bob",
realm="biloxi.com",
nonce="dcd98b7102dd2f0e8b11d0f600bfb0c093",
uri="sip:[email protected]",
qop=auth,
nc=00000001,
cnonce="0a4f113b",
response="6629fae49393a05397450978507c4ef1",
opaque="5ccc069c403ebaf9f0171e9517f40e41"
After upgrade to the version 3.5.0 registration broken with error code:
SIP/2.0 400 Bad header field: authorization
Reason is in the qop wrong escaping. Regarding RFC3261 Instead of qop="auth" it should be qop=auth:
Small patching helped me out:
The text was updated successfully, but these errors were encountered: