mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-29 18:19:30 +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 */
|
||||
char *c;
|
||||
int f = 0;
|
||||
int lastr = 0;
|
||||
c = req->data;
|
||||
|
||||
/* First header starts immediately */
|
||||
@@ -1959,15 +1960,21 @@ static void parse(struct sip_request *req)
|
||||
if ((c[1] == ' ') || (c[1] == '\t')) {
|
||||
/* Continuation of previous header */
|
||||
*c = ' ';
|
||||
if (lastr) {
|
||||
*(c-1) = ' ';
|
||||
}
|
||||
} else {
|
||||
f++;
|
||||
req->header[f] = c + 1;
|
||||
}
|
||||
}
|
||||
lastr = 0;
|
||||
} else if (*c == '\r') {
|
||||
/* Ignore but eliminate \r's */
|
||||
*c = 0;
|
||||
}
|
||||
lastr = 1;
|
||||
} else
|
||||
lastr = 0;
|
||||
c++;
|
||||
}
|
||||
/* Check for last header */
|
||||
|
Reference in New Issue
Block a user