]> git.ipfire.org Git - thirdparty/freeswitch.git/commitdiff
Disable the non-working timer stuff for now
authorStefan Knoblich <stkn@freeswitch.org>
Fri, 14 Nov 2008 20:47:29 +0000 (20:47 +0000)
committerStefan Knoblich <stkn@freeswitch.org>
Fri, 14 Nov 2008 20:47:29 +0000 (20:47 +0000)
git-svn-id: http://svn.openzap.org/svn/openzap/trunk@610 a93c3328-9c30-0410-af19-c9cd2b2d52af

libs/openzap/src/isdn/Q931.c

index a235253c3a7c1172cdbd5bff942c421f115d5c75..b245c144d8a164276cb54b547287766bfdc9d1b5 100644 (file)
@@ -636,12 +636,14 @@ L3INT Q931GetCallState(Q931_TrunkInfo_t *pTrunk, L3INT iCRV)
  */
 L3INT Q931StartTimer(Q931_TrunkInfo_t *pTrunk, L3INT callIndex, L3USHORT iTimerID)
 {
+#if 0
        L3ULONG duration = Q931Timer[pTrunk->Dialect][iTimerID];
 
        if (duration) {
                pTrunk->call[callIndex].Timer   = Q931GetTime() + duration;
                pTrunk->call[callIndex].TimerID = iTimerID;
        }
+#endif
        return 0;
 }