diff options
Diffstat (limited to 'net/b2bua/files/patch-sip::b2b::AuthAgent.cxx')
-rw-r--r-- | net/b2bua/files/patch-sip::b2b::AuthAgent.cxx | 107 |
1 files changed, 0 insertions, 107 deletions
diff --git a/net/b2bua/files/patch-sip::b2b::AuthAgent.cxx b/net/b2bua/files/patch-sip::b2b::AuthAgent.cxx deleted file mode 100644 index 7ccd7dbddcb0..000000000000 --- a/net/b2bua/files/patch-sip::b2b::AuthAgent.cxx +++ /dev/null @@ -1,107 +0,0 @@ - -$FreeBSD$ - ---- sip/b2b/AuthAgent.cxx.orig Fri Apr 4 12:18:19 2003 -+++ sip/b2b/AuthAgent.cxx Fri Apr 4 12:18:19 2003 -@@ -305,6 +305,31 @@ - AuthAgent::doCancel() - { - cpLog(LOG_DEBUG, "AuthAgent::doCancel()"); -+ Sptr<MultiLegCallData> mData = -+ CallDB::instance().getMultiLegCallData(myInvokee->getCallLeg()); -+ assert(mData != 0); -+ -+ Sptr<AccountingData> accData = mData->getAccountingData(); -+ time_t t; -+ t = time(&t); -+ accData->setEndTime(t); -+ -+ if(B2bConfig::instance().getStr(B2bConfig::PP_OPTIONS) -+ != B2bConfig::PP_FREE) -+ { -+ ///Send Stop records to billing -+ int duration = t - accData->getStartTime(); -+ Sptr<BillingData> bData; -+ bData.dynamicCast(myAAAData); -+ assert(bData != 0); -+ bData->setDuration(duration); -+ -+ Sptr<AAAEvent> aEvent = new AAAEvent(this); -+ cpLog(LOG_DEBUG, "AuthAgent::Sending Acct Stop"); -+ B2bFacade::instance().getAAATransceiver()->sendAcctStop(aEvent); -+ } -+ -+ ///Transit the controller state - myState->cancel(*this); - } - -@@ -362,6 +387,31 @@ - AuthAgent::callFailed() - { - cpLog(LOG_DEBUG, "AuthAgent::callFailed()"); -+ Sptr<MultiLegCallData> mData = -+ CallDB::instance().getMultiLegCallData(myInvokee->getCallLeg()); -+ assert(mData != 0); -+ -+ Sptr<AccountingData> accData = mData->getAccountingData(); -+ time_t t; -+ t = time(&t); -+ accData->setEndTime(t); -+ -+ if(B2bConfig::instance().getStr(B2bConfig::PP_OPTIONS) -+ != B2bConfig::PP_FREE) -+ { -+ ///Send Stop records to billing -+ int duration = t - accData->getStartTime(); -+ Sptr<BillingData> bData; -+ bData.dynamicCast(myAAAData); -+ assert(bData != 0); -+ bData->setDuration(duration); -+ -+ Sptr<AAAEvent> aEvent = new AAAEvent(this); -+ cpLog(LOG_DEBUG, "AuthAgent::Sending Acct Stop"); -+ B2bFacade::instance().getAAATransceiver()->sendAcctStop(aEvent); -+ } -+ -+ ///Transit the controller state - myState->fail(*this); - } - -@@ -426,5 +476,37 @@ - void - AuthAgent::receivedStatus(UaBase& agent, const Sptr<SipMsg>& msg) - { -+ Sptr<StatusMsg> statusMsg; -+ statusMsg.dynamicCast(msg); -+ assert(statusMsg != 0); -+ int statusCode = statusMsg->getStatusLine().getStatusCode(); -+ if(statusCode > 200) -+ { -+ Sptr<MultiLegCallData> mData = -+ CallDB::instance().getMultiLegCallData(myInvokee->getCallLeg()); -+ assert(mData != 0); -+ -+ Sptr<AccountingData> accData = mData->getAccountingData(); -+ time_t t; -+ t = time(&t); -+ accData->setEndTime(t); -+ -+ if(B2bConfig::instance().getStr(B2bConfig::PP_OPTIONS) -+ != B2bConfig::PP_FREE) -+ { -+ ///Send Stop records to billing -+ int duration = t - accData->getStartTime(); -+ Sptr<BillingData> bData; -+ bData.dynamicCast(myAAAData); -+ assert(bData != 0); -+ bData->setDuration(duration); -+ bData->setTermCause(BT_SERVICE_UNAVAIL); -+ -+ Sptr<AAAEvent> aEvent = new AAAEvent(this); -+ cpLog(LOG_DEBUG, "AuthAgent::Sending Acct Stop"); -+ B2bFacade::instance().getAAATransceiver()->sendAcctStop(aEvent); -+ } -+ } -+ - MultiLegCallControl::instance().receivedStatus(agent,msg); - } |