Fix type of roundTripDelay variables

git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@408589 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Alexandr Anikin
2014-02-21 10:35:36 +00:00
parent 2b4a90343a
commit 44af8d9f46

View File

@@ -224,7 +224,7 @@ typedef struct OOH323CallData {
char lastDTMF; char lastDTMF;
ASN1UINT nextDTMFstamp; ASN1UINT nextDTMFstamp;
int rtdrInterval, rtdrCount; /* roundTripDelay interval and unreplied count */ int rtdrInterval, rtdrCount; /* roundTripDelay interval and unreplied count */
ASN1UINT rtdrSend, rtdrRecv; /* last sended/replied RTD request */ ASN1UINT8 rtdrSend, rtdrRecv; /* last sended/replied RTD request */
void *usrData; /*!<User can set this to user specific data*/ void *usrData; /*!<User can set this to user specific data*/
struct OOH323CallData* next; struct OOH323CallData* next;
struct OOH323CallData* prev; struct OOH323CallData* prev;