From a08922bb71aaac5bd3f0dfc0352f2852ce5199f6 Mon Sep 17 00:00:00 2001 From: "Kevin P. Fleming" Date: Fri, 8 Jun 2007 16:03:01 +0000 Subject: [PATCH] Merged revisions 68450 via svnmerge from https://origsvn.digium.com/svn/asterisk/branches/1.4 ........ r68450 | kpfleming | 2007-06-08 10:52:47 -0500 (Fri, 08 Jun 2007) | 2 lines actually remember the type/subclass of full frames that are in process ........ git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@68453 65c4cc65-6c06-0410-ace0-fbb531ad65f3 --- channels/chan_iax2.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c index b218582..b06fa24 100644 --- a/channels/chan_iax2.c +++ b/channels/chan_iax2.c @@ -6582,6 +6582,8 @@ static int socket_read(int *id, int fd, short events, void *cbdata) /* this thread is going to process this frame, so mark it */ thread->ffinfo.callno = ntohs(fh->scallno); memcpy(&thread->ffinfo.sin, &thread->iosin, sizeof(thread->ffinfo.sin)); + thread->ffinfo.type = fh->type; + thread->ffinfo.csub = fh->csub; } } -- 1.7.9.5