aboutsummaryrefslogtreecommitdiffstats
path: root/channels
diff options
context:
space:
mode:
authorkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-08 16:03:01 +0000
committerkpfleming <kpfleming@f38db490-d61c-443f-a65b-d21fe96a405b>2007-06-08 16:03:01 +0000
commit7028ac1662e5f8343ea0a62b74fdbafc2a7a2291 (patch)
tree0d8ca19e4561d51df4d0ccae4852ce88588d6471 /channels
parent0f880154ef09db05dc5ab13195f0fa7bc57c8b06 (diff)
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: http://svn.digium.com/svn/asterisk/trunk@68453 f38db490-d61c-443f-a65b-d21fe96a405b
Diffstat (limited to 'channels')
-rw-r--r--channels/chan_iax2.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/channels/chan_iax2.c b/channels/chan_iax2.c
index b218582ba..b06fa24bd 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;
}
}