mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-30 02:26:23 +00:00
Also handle properly \r\n instead of just \n...
git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@2765 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -1936,6 +1936,7 @@ static void parse(struct sip_request *req)
|
|||||||
/* Divide fields by NULL's */
|
/* Divide fields by NULL's */
|
||||||
char *c;
|
char *c;
|
||||||
int f = 0;
|
int f = 0;
|
||||||
|
int lastr = 0;
|
||||||
c = req->data;
|
c = req->data;
|
||||||
|
|
||||||
/* First header starts immediately */
|
/* First header starts immediately */
|
||||||
@@ -1959,15 +1960,21 @@ static void parse(struct sip_request *req)
|
|||||||
if ((c[1] == ' ') || (c[1] == '\t')) {
|
if ((c[1] == ' ') || (c[1] == '\t')) {
|
||||||
/* Continuation of previous header */
|
/* Continuation of previous header */
|
||||||
*c = ' ';
|
*c = ' ';
|
||||||
|
if (lastr) {
|
||||||
|
*(c-1) = ' ';
|
||||||
|
}
|
||||||
} else {
|
} else {
|
||||||
f++;
|
f++;
|
||||||
req->header[f] = c + 1;
|
req->header[f] = c + 1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
lastr = 0;
|
||||||
} else if (*c == '\r') {
|
} else if (*c == '\r') {
|
||||||
/* Ignore but eliminate \r's */
|
/* Ignore but eliminate \r's */
|
||||||
*c = 0;
|
*c = 0;
|
||||||
}
|
lastr = 1;
|
||||||
|
} else
|
||||||
|
lastr = 0;
|
||||||
c++;
|
c++;
|
||||||
}
|
}
|
||||||
/* Check for last header */
|
/* Check for last header */
|
||||||
|
Reference in New Issue
Block a user