Skip to content
Snippets Groups Projects
Commit f9df5318 authored by Olle Johansson's avatar Olle Johansson
Browse files

Specify digest algorithm for picky clients

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@36912 65c4cc65-6c06-0410-ace0-fbb531ad65f3
parent c929a15b
No related branches found
No related tags found
No related merge requests found
......@@ -5497,7 +5497,7 @@ static int transmit_response_with_allow(struct sip_pvt *p, const char *msg, cons
static int transmit_response_with_auth(struct sip_pvt *p, const char *msg, const struct sip_request *req, const char *randdata, enum xmittype reliable, const 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)) {
......@@ -5506,7 +5506,7 @@ static int transmit_response_with_auth(struct sip_pvt *p, const char *msg, const
}
/* 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);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment