Skip to content

Commit

Permalink
-fix some compilation issues in clickToCall
Browse files Browse the repository at this point in the history
  • Loading branch information
sgodin committed Mar 1, 2019
1 parent 278141a commit adfb0a2
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 7 deletions.
7 changes: 1 addition & 6 deletions apps/clicktocall/Server.cxx
Expand Up @@ -150,7 +150,7 @@ Server::Server(int argc, char** argv) :
mXmlRpcServerV6(0),
mXmlRpcServerThread(0)
{
GenericLogImpl::MaxLineCount = mLogFileMaxLines;
Log::setMaxLineCount(mLogFileMaxLines);
Log::initialize("file", mLogLevel, "", mLogFilename.c_str(), (ExternalLogger*)&g_ClickToCallLogger);
//UserAgent::setLogLevel(Log::Warning, UserAgent::SubsystemAll);
//UserAgent::setLogLevel(Log::Info, UserAgent::SubsystemGateway);
Expand Down Expand Up @@ -939,11 +939,6 @@ Server::onTerminated(ServerSubscriptionHandle)
InfoLog(<< "onTerminated(ServerSubscriptionHandle)");
}

void
Server::onReadyToSend(ServerSubscriptionHandle, SipMessage&)
{
}

void
Server::onNotifyRejected(ServerSubscriptionHandle, const SipMessage& msg)
{
Expand Down
1 change: 0 additions & 1 deletion apps/clicktocall/Server.hxx
Expand Up @@ -173,7 +173,6 @@ protected:
virtual void onNewSubscriptionFromRefer(resip::ServerSubscriptionHandle, const resip::SipMessage& sub);
virtual void onRefresh(resip::ServerSubscriptionHandle, const resip::SipMessage& sub);
virtual void onTerminated(resip::ServerSubscriptionHandle);
virtual void onReadyToSend(resip::ServerSubscriptionHandle, resip::SipMessage&);
virtual void onNotifyRejected(resip::ServerSubscriptionHandle, const resip::SipMessage& msg);
virtual void onError(resip::ServerSubscriptionHandle, const resip::SipMessage& msg);
virtual void onExpiredByClient(resip::ServerSubscriptionHandle, const resip::SipMessage& sub, resip::SipMessage& notify);
Expand Down

0 comments on commit adfb0a2

Please sign in to comment.