summaryrefslogtreecommitdiff
path: root/addons/ooh323c/src/ooq931.c
diff options
context:
space:
mode:
authorAlexandr Anikin <may@telecom-service.ru>2009-12-30 23:51:32 +0000
committerAlexandr Anikin <may@telecom-service.ru>2009-12-30 23:51:32 +0000
commitc032901aae0b0da7f9d60e4c24e8d06456f50e09 (patch)
treec3f5cf5bcc3240afcc5dea25192a1bbbef56425a /addons/ooh323c/src/ooq931.c
parentf93071483f2d477a9470fb19290adacccedfea6e (diff)
small q931 processing and signalling corrections
don't decode UUIE from Q931StatusMessage clean call without callIdentifier data don't start tcs/msd exchange procedure after call proceeding received (closes issue #16365) Reported by: benngard2 Tested by: may213, benngard2 git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@237098 65c4cc65-6c06-0410-ace0-fbb531ad65f3
Diffstat (limited to 'addons/ooh323c/src/ooq931.c')
-rw-r--r--addons/ooh323c/src/ooq931.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/addons/ooh323c/src/ooq931.c b/addons/ooh323c/src/ooq931.c
index 8c8860b67..e8bc41e76 100644
--- a/addons/ooh323c/src/ooq931.c
+++ b/addons/ooh323c/src/ooq931.c
@@ -237,7 +237,7 @@ EXTERN int ooQ931Decode
/*cisco router sends Q931Notify without UU ie,
we just ignore notify message as of now as handling is optional for
end point*/
- if(msg->messageType != Q931NotifyMsg)
+ if(msg->messageType != Q931NotifyMsg && msg->messageType != Q931StatusMsg)
rv = ooDecodeUUIE(pctxt, msg);
return rv;
}