diff options
Diffstat (limited to 'anyrtpproxy/commandHandler.h')
-rw-r--r-- | anyrtpproxy/commandHandler.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/anyrtpproxy/commandHandler.h b/anyrtpproxy/commandHandler.h index 6e75bc4..97082ca 100644 --- a/anyrtpproxy/commandHandler.h +++ b/anyrtpproxy/commandHandler.h @@ -35,14 +35,15 @@ #include "../datatypes.h" #include "../PracticalSocket.h" #include "../syncQueue.h" +#include "portWindow.h" using std::string; class CommandHandler { public: - CommandHandler(SyncQueue& q, u_int16_t lp); - CommandHandler(SyncQueue& q, string la, u_int16_t lp); + CommandHandler(SyncQueue& q, u_int16_t lp, PortWindow &); + CommandHandler(SyncQueue& q, string la, u_int16_t lp, PortWindow &); ~CommandHandler(); bool isRunning(); @@ -81,6 +82,7 @@ private: UDPSocket control_sock_; string local_address_; u_int16_t local_port_; + PortWindow& port_window_; }; |