aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-04 14:45:44 +0000
committeroej <oej@f38db490-d61c-443f-a65b-d21fe96a405b>2006-07-04 14:45:44 +0000
commit99e0c139bb5156e6b8a26347c3b21749964dae11 (patch)
tree61c0e1fc5613610455827d361233d0702f0217bd
parent1ef35a40fdcc04a44c2c0eb7542bb687bd7c462e (diff)
Tell clients based on old SIP standard that we only support MD5 digest authentication...
git-svn-id: http://svn.digium.com/svn/asterisk/branches/1.2@36911 f38db490-d61c-443f-a65b-d21fe96a405b
-rw-r--r--channels/chan_sip.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/channels/chan_sip.c b/channels/chan_sip.c
index f95d17c07..d503661c6 100644
--- a/channels/chan_sip.c
+++ b/channels/chan_sip.c
@@ -4286,7 +4286,7 @@ static int transmit_response_with_allow(struct sip_pvt *p, char *msg, struct sip
static int transmit_response_with_auth(struct sip_pvt *p, char *msg, struct sip_request *req, char *randdata, int reliable, char *header, int stale)
{
struct sip_request resp;
- char tmp[256];
+ char tmp[512];
int seqno = 0;
if (reliable && (sscanf(get_header(req, "CSeq"), "%d ", &seqno) != 1)) {
@@ -4295,7 +4295,7 @@ static int transmit_response_with_auth(struct sip_pvt *p, char *msg, struct sip_
}
/* Stale means that they sent us correct authentication, but
based it on an old challenge (nonce) */
- snprintf(tmp, sizeof(tmp), "Digest realm=\"%s\", nonce=\"%s\"%s", global_realm, randdata, stale ? ", stale=true" : "");
+ snprintf(tmp, sizeof(tmp), "Digest algorithm=MD5, realm=\"%s\", nonce=\"%s\"%s", global_realm, randdata, stale ? ", stale=true" : "");
respprep(&resp, p, msg, req);
add_header(&resp, header, tmp);
add_header_contentLength(&resp, 0);