summaryrefslogtreecommitdiff
path: root/src/anyrtpproxy/commandHandler.h
diff options
context:
space:
mode:
authorChristian Pointner <equinox@anytun.org>2008-11-25 15:47:14 +0000
committerChristian Pointner <equinox@anytun.org>2008-11-25 15:47:14 +0000
commit467ac2b93ae592eb58d7e140e8d144b6bd3ba99d (patch)
tree9ff8b0c21693071d59a97829df3209d756bc906b /src/anyrtpproxy/commandHandler.h
parentanyrtpproxy furhter fixes (diff)
anyrtpproxy: commandhanlder uses now boost::asio and boost::thread
Diffstat (limited to 'src/anyrtpproxy/commandHandler.h')
-rw-r--r--src/anyrtpproxy/commandHandler.h12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/anyrtpproxy/commandHandler.h b/src/anyrtpproxy/commandHandler.h
index b7a565a..6bd802a 100644
--- a/src/anyrtpproxy/commandHandler.h
+++ b/src/anyrtpproxy/commandHandler.h
@@ -32,6 +32,8 @@
#ifndef _COMMAND_HANDLER_H_
#define _COMMAND_HANDLER_H_
+#include <boost/asio.hpp>
+
#include <string>
#include "../datatypes.h"
#include "../PracticalSocket.h"
@@ -41,9 +43,10 @@
class CommandHandler
{
public:
+ typedef boost::asio::ip::udp proto;
+
CommandHandler(SyncQueue& q, std::string lp, PortWindow &);
CommandHandler(SyncQueue& q, std::string la, std::string lp, PortWindow &);
- ~CommandHandler();
bool isRunning();
@@ -64,7 +67,7 @@ private:
CommandHandler(const CommandHandler &c);
void operator=(const CommandHandler &c);
- static void* run(void* s);
+ static void run(void* s);
std::string handle(std::string command);
std::string handleRequest(std::string modifiers, std::string call_id, std::string addr, std::string port, std::string from_tag, std::string to_tag);
@@ -74,11 +77,12 @@ private:
std::string handleVersionF(std::string date_code);
std::string handleInfo();
- pthread_t thread_;
+ boost::thread thread_;
SyncQueue& queue_;
bool running_;
- UDPSocket control_sock_;
+ boost::asio::io_service io_service_;
+ proto::socket control_sock_;
std::string local_address_;
std::string local_port_;
PortWindow& port_window_;