diff options
author | deva <deva> | 2006-01-10 10:03:41 +0000 |
---|---|---|
committer | deva <deva> | 2006-01-10 10:03:41 +0000 |
commit | 495330ce3cfb6b168d2fb9b56aa125bbc7ff6e7d (patch) | |
tree | 45cb7dc618e05a21657790e17b617a664652dae1 /src/cprlisten.h | |
parent | caa558e59c248521d1d4ad483fe669828277664e (diff) |
*** empty log message ***
Diffstat (limited to 'src/cprlisten.h')
-rw-r--r-- | src/cprlisten.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/cprlisten.h b/src/cprlisten.h index 57551f5..5808aec 100644 --- a/src/cprlisten.h +++ b/src/cprlisten.h @@ -33,15 +33,25 @@ #include "thread.h" #include "mutex.h" +#include "aa_socket.h" + class CPRListen: public Thread { public: CPRListen(unsigned short port); ~CPRListen(); + bool cprChanged(); std::string getCpr(); void thread_main(); + void stop(); // Stops the call to listen + private: + + volatile bool running; + AASocket *socket; + + bool cprchanged; unsigned short port; std::string cpr; Mutex mutex; |