Index: addons/ooh323c/src/ootypes.h =================================================================== --- addons/ooh323c/src/ootypes.h (revision 343442) +++ addons/ooh323c/src/ootypes.h (working copy) @@ -190,8 +190,9 @@ typedef enum OOCallClearReason { #define OORequestMode 133 #define OORequestDelayResponse 134 #define OORequestDelayRequest 135 +#define OOStatus 136 -#define OO_MSGTYPE_MAX 135 +#define OO_MSGTYPE_MAX 136 /* Timer types */ #define OO_CALLESTB_TIMER (1<<0) Index: addons/ooh323c/src/ooh323.c =================================================================== --- addons/ooh323c/src/ooh323.c (revision 343442) +++ addons/ooh323c/src/ooh323.c (working copy) @@ -1792,6 +1792,7 @@ int ooHandleH2250Message(OOH323CallData *call, Q93 case Q931StatusEnquiryMsg: OOTRACEINFO3("H.225 Status Inquiry message Received (%s, %s)\n", call->callType, call->callToken); + ooSendStatus(call); ooFreeQ931Message(call->msgctxt, q931Msg); break; case Q931SetupAckMsg: Index: addons/ooh323c/src/ooh245.c =================================================================== --- addons/ooh323c/src/ooh245.c (revision 343442) +++ addons/ooh323c/src/ooh245.c (working copy) @@ -16,6 +16,7 @@ #include "asterisk.h" #include "asterisk/lock.h" #include "ooh245.h" +#include "ooq931.h" #include "ooCalls.h" #include "printHandler.h" #include "ooh323ep.h" @@ -957,6 +958,9 @@ int ooHandleMasterSlave(OOH323CallData *call, void /*Since Cap exchange and MasterSlave Procedures are done */ if(gH323ep.h323Callbacks.openLogicalChannels) gH323ep.h323Callbacks.openLogicalChannels(call); + + /* ooSendStatusInquiry(call); */ + if(!ooGetTransmitLogicalChannel(call)) ooOpenLogicalChannels(call); #if 0 @@ -2121,6 +2125,9 @@ int ooOnReceivedTerminalCapabilitySetAck(OOH323Cal { if(gH323ep.h323Callbacks.openLogicalChannels) gH323ep.h323Callbacks.openLogicalChannels(call); + + /* ooSendStatusInquiry(call); */ + if(!ooGetTransmitLogicalChannel(call)) ooOpenLogicalChannels(call); #if 0 @@ -3069,7 +3076,12 @@ int ooOnReceivedTerminalCapabilitySet(OOH323CallDa we can accept new capability set only. We must remember also that new join caps will be previously joined caps with new cap set. */ - if(call->remoteTermCapSeqNo == tcs->sequenceNumber) + +/* 20111103 */ +/* for addition for previous we must check repeated tcs if it's not first + tcs i.e. SeqNo is not null */ + + if(call->remoteTermCapSeqNo && call->remoteTermCapSeqNo == tcs->sequenceNumber) call->localTermCapState = OO_LocalTermCapExchange_Idle; } @@ -3156,6 +3168,9 @@ int ooOnReceivedTerminalCapabilitySet(OOH323CallDa if(gH323ep.h323Callbacks.openLogicalChannels) gH323ep.h323Callbacks.openLogicalChannels(call); + + /* ooSendStatusInquiry(call); */ + if(!ooGetTransmitLogicalChannel(call)) ooOpenLogicalChannels(call); #if 0 Index: addons/ooh323c/src/oochannels.c =================================================================== --- addons/ooh323c/src/oochannels.c (revision 343442) +++ addons/ooh323c/src/oochannels.c (working copy) @@ -1576,6 +1576,10 @@ int ooOnSendMsg /* if(gH323ep.h323Callbacks.onAlerting && call->callState < OO_CALL_CLEAR) gH323ep.h323Callbacks.onAlerting(call); */ break; + case OOStatus: + OOTRACEINFO3("Sent Message - Status (%s, %s) \n", call->callType, + call->callToken); + break; case OOConnect: OOTRACEINFO3("Sent Message - Connect (%s, %s)\n", call->callType, call->callToken); Index: addons/ooh323c/src/ooq931.c =================================================================== --- addons/ooh323c/src/ooq931.c (revision 343442) +++ addons/ooh323c/src/ooq931.c (working copy) @@ -236,6 +236,15 @@ EXTERN int ooQ931Decode OOTRACEDBGB1(" }\n"); } + /* Handle CallState ie */ + if(ie->discriminator == Q931CallStateIE) + { + msg->causeIE = ie; + OOTRACEDBGB1(" CallState IE = {\n"); + OOTRACEDBGB2(" %d\n", ie->data[0]); + OOTRACEDBGB1(" }\n"); + } + /* TODO: Get rid of ie list.*/ dListAppend (pctxt, &msg->ies, ie); if (rv != ASN_OK) @@ -403,6 +412,7 @@ int ooCreateQ931Message(OOCTXT* pctxt, Q931Message (*q931msg)->callingPartyNumberIE = NULL; (*q931msg)->calledPartyNumberIE = NULL; (*q931msg)->causeIE = NULL; + (*q931msg)->callstateIE = NULL; return OO_OK; } } @@ -681,6 +691,10 @@ int ooEncodeH225Message(OOH323CallData *call, Q931 else if(pq931Msg->messageType == Q931InformationMsg){ msgbuf[i++] = OOInformationMessage; } + else if(pq931Msg->messageType == Q931StatusMsg || + pq931Msg->messageType == Q931StatusEnquiryMsg){ + msgbuf[i++] = OOStatus; + } else if(pq931Msg->messageType == Q931FacilityMsg){ msgbuf[i++] = OOFacility; msgbuf[i++] = pq931Msg->tunneledMsgType; @@ -791,6 +805,13 @@ int ooEncodeH225Message(OOH323CallData *call, Q931 i += pq931Msg->keypadIE->length; } + if(pq931Msg->callstateIE) { + msgbuf[i++] = Q931CallStateIE; + msgbuf[i++] = pq931Msg->callstateIE->length; + memcpy(msgbuf+i, pq931Msg->callstateIE->data, pq931Msg->callstateIE->length); + i += pq931Msg->callstateIE->length; + } + /* Note: Have to fix this, though it works. Need to get rid of ie list. Right now we only put UUIE in ie list. Can be easily removed. */ @@ -1703,6 +1724,138 @@ int ooSendStartH245Facility(OOH323CallData *call) return ret; } +/* + +*/ + +int ooSendStatus(OOH323CallData *call) +{ + int ret; + H225Status_UUIE *status; + Q931Message *q931msg=NULL; + /* OOCTXT *pctxt = &gH323ep.msgctxt; */ + OOCTXT *pctxt = call->msgctxt; + + OOTRACEDBGC3("Building StatusMsg (%s, %s)\n", call->callType, + call->callToken); + ret = ooCreateQ931Message(pctxt, &q931msg, Q931StatusMsg); + if(ret != OO_OK) + { + OOTRACEERR1("Error: In allocating memory for - H225 Status " + "message\n"); + return OO_FAILED; + } + + q931msg->callReference = call->callReference; + + q931msg->userInfo = (H225H323_UserInformation*)memAllocZ(pctxt, + sizeof(H225H323_UserInformation)); + if(!q931msg->userInfo) + { + OOTRACEERR1("ERROR:Memory - ooSendStatus - userInfo\n"); + return OO_FAILED; + } + q931msg->userInfo->h323_uu_pdu.m.h245TunnelingPresent=1; + q931msg->userInfo->h323_uu_pdu.h245Tunneling = + OO_TESTFLAG(call->flags, OO_M_TUNNELING); + q931msg->userInfo->h323_uu_pdu.h323_message_body.t = + T_H225H323_UU_PDU_h323_message_body_status; + + status = (H225Status_UUIE*)memAllocZ(pctxt, + sizeof(H225Status_UUIE)); + if(!status) + { + OOTRACEERR1("ERROR:Memory - ooSendStatus \n"); + return OO_FAILED; + } + q931msg->userInfo->h323_uu_pdu.h323_message_body.u.status = status; + + status->callIdentifier.guid.numocts = + call->callIdentifier.guid.numocts; + memcpy(status->callIdentifier.guid.data, + call->callIdentifier.guid.data, + call->callIdentifier.guid.numocts); + status->protocolIdentifier = gProtocolID; + + ooQ931SetCauseIE(pctxt, q931msg, Q931StatusEnquiryResponse, 0, 0); + ooQ931SetCallStateIE(pctxt, q931msg, 10); + + OOTRACEDBGA3("Built Status (%s, %s)\n", call->callType, + call->callToken); + ret = ooSendH225Msg(call, q931msg); + if(ret != OO_OK) + { + OOTRACEERR3("Error:Failed to enqueue Status message to outbound queue.(%s, %s)\n", call->callType, call->callToken); + } + + /* memReset(&gH323ep.msgctxt); */ + memReset(call->msgctxt); + + return ret; +} + +int ooSendStatusInquiry(OOH323CallData *call) +{ + int ret; + H225StatusInquiry_UUIE *statusInq; + Q931Message *q931msg=NULL; + /* OOCTXT *pctxt = &gH323ep.msgctxt; */ + OOCTXT *pctxt = call->msgctxt; + + OOTRACEDBGC3("Building StatusInquryMsg (%s, %s)\n", call->callType, + call->callToken); + ret = ooCreateQ931Message(pctxt, &q931msg, Q931StatusEnquiryMsg); + if(ret != OO_OK) + { + OOTRACEERR1("Error: In allocating memory for - H225 Status " + "message\n"); + return OO_FAILED; + } + + q931msg->callReference = call->callReference; + + q931msg->userInfo = (H225H323_UserInformation*)memAllocZ(pctxt, + sizeof(H225H323_UserInformation)); + if(!q931msg->userInfo) + { + OOTRACEERR1("ERROR:Memory - ooSendStatus - userInfo\n"); + return OO_FAILED; + } + q931msg->userInfo->h323_uu_pdu.m.h245TunnelingPresent=1; + q931msg->userInfo->h323_uu_pdu.h245Tunneling = + OO_TESTFLAG(call->flags, OO_M_TUNNELING); + q931msg->userInfo->h323_uu_pdu.h323_message_body.t = + T_H225H323_UU_PDU_h323_message_body_statusInquiry; + + statusInq = (H225StatusInquiry_UUIE*)memAllocZ(pctxt, + sizeof(H225StatusInquiry_UUIE)); + if(!statusInq) + { + OOTRACEERR1("ERROR:Memory - ooSendStatusInquiry \n"); + return OO_FAILED; + } + q931msg->userInfo->h323_uu_pdu.h323_message_body.u.statusInquiry = statusInq; + + statusInq->callIdentifier.guid.numocts = + call->callIdentifier.guid.numocts; + memcpy(statusInq->callIdentifier.guid.data, + call->callIdentifier.guid.data, + call->callIdentifier.guid.numocts); + statusInq->protocolIdentifier = gProtocolID; + + OOTRACEDBGA3("Built StatusInquiry (%s, %s)\n", call->callType, + call->callToken); + ret = ooSendH225Msg(call, q931msg); + if(ret != OO_OK) + { + OOTRACEERR3("Error:Failed to enqueue Status message to outbound queue.(%s, %s)\n", call->callType, call->callToken); + } + + /* memReset(&gH323ep.msgctxt); */ + memReset(call->msgctxt); + + return ret; +} int ooSendReleaseComplete(OOH323CallData *call) { int ret; @@ -3128,6 +3281,28 @@ int ooQ931SetCalledPartyNumberIE return OO_OK; } +int ooQ931SetCallStateIE + (OOCTXT* pctxt, Q931Message *pmsg, unsigned char callstate) +{ + if(pmsg->callstateIE){ + memFreePtr(pctxt, pmsg->callstateIE); + pmsg->callstateIE = NULL; + } + + pmsg->callstateIE = (Q931InformationElement*) + memAllocZ(pctxt, sizeof(Q931InformationElement)); + if(!pmsg->callstateIE) + { + OOTRACEERR1("Error:Memory - ooQ931SetCallstateIE - causeIE\n"); + return OO_FAILED; + } + pmsg->callstateIE->discriminator = Q931CallStateIE; + pmsg->callstateIE->length = 1; + pmsg->callstateIE->data[0] = callstate; + + return OO_OK; +} + int ooQ931SetCauseIE (OOCTXT* pctxt, Q931Message *pmsg, enum Q931CauseValues cause, unsigned coding, unsigned location) Index: addons/ooh323c/src/ooq931.h =================================================================== --- addons/ooh323c/src/ooq931.h (revision 343442) +++ addons/ooh323c/src/ooq931.h (working copy) @@ -246,6 +246,7 @@ typedef struct Q931Message { Q931InformationElement *calledPartyNumberIE; Q931InformationElement *causeIE; Q931InformationElement *keypadIE; + Q931InformationElement *callstateIE; H225H323_UserInformation *userInfo; } Q931Message; @@ -469,6 +470,10 @@ EXTERN int ooSendAlerting(struct OOH323CallData *c EXTERN int ooSendProgress(struct OOH323CallData *call); +EXTERN int ooSendStatus(struct OOH323CallData *call); + +EXTERN int ooSendStatusInquiry(struct OOH323CallData *call); + /** * This function is invoked to send Facility message. * @@ -714,6 +719,9 @@ EXTERN int ooQ931SetCauseIE (OOCTXT *pctxt, Q931Message *pmsg,enum Q931CauseValues cause, unsigned coding, unsigned location); +EXTERN int ooQ931SetCallStateIE + (OOCTXT *pctxt, Q931Message *pmsg, unsigned char callstate); + /** * This function is used to convert a call clear reason to cause and * reason code. It is used when local user is endoing the call and