From 43424d46fbb74958cd5fc358d57c757b53436585 Mon Sep 17 00:00:00 2001 From: Othmar Gsenger Date: Mon, 12 Jan 2009 20:53:14 +0000 Subject: moved rtp stuff to anyrtpproxy and removed it from anytun --- src/anyrtpproxy/commandHandler.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/anyrtpproxy/commandHandler.cpp') diff --git a/src/anyrtpproxy/commandHandler.cpp b/src/anyrtpproxy/commandHandler.cpp index c8604d6..01613ec 100644 --- a/src/anyrtpproxy/commandHandler.cpp +++ b/src/anyrtpproxy/commandHandler.cpp @@ -42,8 +42,8 @@ #include "../buffer.h" #include "../log.h" #include "../syncQueue.h" -#include "../syncCommand.h" -#include "../rtpSessionTable.h" +#include "syncRtpCommand.h" +#include "rtpSessionTable.h" #include "callIdQueue.h" #include "options.h" @@ -231,7 +231,7 @@ string CommandHandler::handleResponse(string modifiers, string call_id, string a RtpSession::proto::resolver::query query(addr,port); session.setRemoteEnd2(*resolver.resolve(query)); session.isComplete(true); - SyncCommand sc(call_id); + SyncRtpCommand sc(call_id); queue_.push(sc); ostringstream oss; @@ -252,7 +252,7 @@ string CommandHandler::handleDelete(string call_id, string from_tag, string to_t { RtpSession& session = gRtpSessionTable.getSession(call_id); session.isDead(true); - SyncCommand sc(call_id); + SyncRtpCommand sc(call_id); queue_.push(sc); return RET_OK; -- cgit v1.2.3