mirror of
https://github.com/asterisk/asterisk.git
synced 2025-09-18 18:58:22 +00:00
handle INFO A through D (bug #3445)
git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/v1-0@4916 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -6090,6 +6090,8 @@ static void receive_info(struct sip_pvt *p, struct sip_request *req)
|
||||
event = 10;
|
||||
else if (buf[0] == '#')
|
||||
event = 11;
|
||||
else if ((buf[0] >= 'A') && (buf[0] <= 'D'))
|
||||
event = 12 + buf[0] - 'A';
|
||||
else
|
||||
event = atoi(buf);
|
||||
if (event < 10) {
|
||||
|
Reference in New Issue
Block a user