mirror of
https://github.com/asterisk/asterisk.git
synced 2025-11-16 14:58:25 +00:00
Fix to resend GRQ/RRQ if RRJ (registration reject) is received
(close issue ASTERISK-20094) Patches: ASTERISK-20094.patch git-svn-id: https://origsvn.digium.com/svn/asterisk/branches/1.8@371011 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
@@ -809,6 +809,9 @@ int ooGkClientHandleGatekeeperConfirm
|
||||
if(pGatekeeperConfirm->m.gatekeeperIdentifierPresent)
|
||||
{
|
||||
pGkClient->gkId.nchars = pGatekeeperConfirm->gatekeeperIdentifier.nchars;
|
||||
if (pGkClient->gkId.data) {
|
||||
memFreePtr(&pGkClient->ctxt, pGkClient->gkId.data);
|
||||
}
|
||||
pGkClient->gkId.data = (ASN116BITCHAR*)memAlloc(&pGkClient->ctxt,
|
||||
sizeof(ASN116BITCHAR)*pGkClient->gkId.nchars);
|
||||
if(!pGkClient->gkId.data)
|
||||
@@ -1368,7 +1371,20 @@ int ooGkClientHandleRegistrationReject
|
||||
default:
|
||||
OOTRACEINFO1("RRQ Rejected - Invalid Reason\n");
|
||||
}
|
||||
pGkClient->state = GkClientGkErr;
|
||||
|
||||
/* send again GRQ/RRQ's */
|
||||
ast_mutex_lock(&pGkClient->Lock);
|
||||
pGkClient->state = GkClientUnregistered;
|
||||
pGkClient->rrqRetries = 0;
|
||||
pGkClient->grqRetries = 0;
|
||||
pGkClient->discoveryComplete = FALSE;
|
||||
ast_mutex_unlock(&pGkClient->Lock);
|
||||
|
||||
iRet = ooGkClientSendGRQ(pGkClient);
|
||||
if(iRet != OO_OK){
|
||||
OOTRACEERR1("\nError: Transmission of rediscovery of GK failed\n");
|
||||
return OO_FAILED;
|
||||
}
|
||||
return OO_OK;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user