[asterisk-scf-commits] asterisk-scf/release/test_channel.git branch "fileplayback_endpoint" updated.
Commits to the Asterisk SCF project code repositories
asterisk-scf-commits at lists.digium.com
Mon Jan 3 19:47:30 UTC 2011
branch "fileplayback_endpoint" has been updated
via 32301a1abb01244b115d999696651071fb2482c5 (commit)
from f6fee09b60934bc83a37b0acfb49a7cc2bea1c8a (commit)
Summary of changes:
src/FilePlaybackSessionEndpoint.cpp | 4 ++--
src/TestEndpoint.cpp | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
- Log -----------------------------------------------------------------
commit 32301a1abb01244b115d999696651071fb2482c5
Author: Brent Eagles <beagles at digium.com>
Date: Mon Jan 3 16:16:44 2011 -0330
Updated to build with the move of NullProxyException to the System module.
diff --git a/src/FilePlaybackSessionEndpoint.cpp b/src/FilePlaybackSessionEndpoint.cpp
index 8c40467..832acfe 100644
--- a/src/FilePlaybackSessionEndpoint.cpp
+++ b/src/FilePlaybackSessionEndpoint.cpp
@@ -1147,7 +1147,7 @@ void AsteriskSCF::FilePlayback::FilePlaybackEndpointImpl::addDefaultSessionListe
{
mLogger(Debug) << __FUNCTION__ << ":" <<
current.adapter->getCommunicator()->identityToString(current.id) << " attempting to add a null proxy";
- throw AsteriskSCF::SessionCommunications::V1::NullProxyException();
+ throw AsteriskSCF::System::V1::NullProxyException();
}
IceUtil::Mutex::Lock lock(mMutex);
if(mDefaultListeners.end() == std::find_if(mDefaultListeners.begin(), mDefaultListeners.end(),
@@ -1166,7 +1166,7 @@ void AsteriskSCF::FilePlayback::FilePlaybackEndpointImpl::removeDefaultSessionLi
{
mLogger(Debug) << __FUNCTION__ << ":" << current.adapter->getCommunicator()->identityToString(current.id)
<< " attempting to remove a null proxy";
- throw AsteriskSCF::SessionCommunications::V1::NullProxyException();
+ throw AsteriskSCF::System::V1::NullProxyException();
}
IceUtil::Mutex::Lock lock(mMutex);
std::remove_if(mDefaultListeners.begin(), mDefaultListeners.end(),
diff --git a/src/TestEndpoint.cpp b/src/TestEndpoint.cpp
index d56d197..8f230f1 100644
--- a/src/TestEndpoint.cpp
+++ b/src/TestEndpoint.cpp
@@ -466,7 +466,7 @@ public:
{
std::cerr << __FUNCTION__ << ":" <<
current.adapter->getCommunicator()->identityToString(current.id) << " attempting to add a null proxy";
- throw AsteriskSCF::SessionCommunications::V1::NullProxyException();
+ throw AsteriskSCF::System::V1::NullProxyException();
}
boost::shared_lock<boost::shared_mutex> lock(mMutex);
if(mDefaultListeners.end() == std::find_if(mDefaultListeners.begin(), mDefaultListeners.end(),
@@ -483,7 +483,7 @@ public:
{
std::cerr << __FUNCTION__ << ":" << current.adapter->getCommunicator()->identityToString(current.id)
<< " attempting to remove a null proxy";
- throw AsteriskSCF::SessionCommunications::V1::NullProxyException();
+ throw AsteriskSCF::System::V1::NullProxyException();
}
boost::shared_lock<boost::shared_mutex> lock(mMutex);
std::remove_if(mDefaultListeners.begin(), mDefaultListeners.end(),
-----------------------------------------------------------------------
--
asterisk-scf/release/test_channel.git
More information about the asterisk-scf-commits
mailing list