summaryrefslogtreecommitdiff
path: root/src/cprlisten.h
diff options
context:
space:
mode:
authordeva <deva>2006-01-10 11:18:50 +0000
committerdeva <deva>2006-01-10 11:18:50 +0000
commitcbe575f21ab008182b5771b691ec4c93c5b2b87a (patch)
treeeda4f44e4a10d179c06bcf89be95052038c7503b /src/cprlisten.h
parent6568c8ec81fac9bee7ceceaee0de7455ac006160 (diff)
*** empty log message ***
Diffstat (limited to 'src/cprlisten.h')
-rw-r--r--src/cprlisten.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/cprlisten.h b/src/cprlisten.h
index 5808aec..012fe4c 100644
--- a/src/cprlisten.h
+++ b/src/cprlisten.h
@@ -34,10 +34,11 @@
#include "mutex.h"
#include "aa_socket.h"
+#include "info.h"
class CPRListen: public Thread {
public:
- CPRListen(unsigned short port);
+ CPRListen(Info *info, unsigned short port);
~CPRListen();
bool cprChanged();
@@ -47,6 +48,7 @@ public:
void stop(); // Stops the call to listen
private:
+ Info *info;
volatile bool running;
AASocket *socket;