aboutsummaryrefslogtreecommitdiff
path: root/src/old/tests/httpsrv/httpconnectionmonitor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/old/tests/httpsrv/httpconnectionmonitor.h')
-rw-r--r--src/old/tests/httpsrv/httpconnectionmonitor.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/old/tests/httpsrv/httpconnectionmonitor.h b/src/old/tests/httpsrv/httpconnectionmonitor.h
new file mode 100644
index 0000000..30c0afd
--- /dev/null
+++ b/src/old/tests/httpsrv/httpconnectionmonitor.h
@@ -0,0 +1,16 @@
1#ifndef HTTPCONNECTIONMONITOR_H
2#define HTTPCONNECTIONMONITOR_H
3
4#include "connectionmonitor.h"
5
6class HttpConnectionMonitor : public ConnectionMonitor
7{
8public:
9 HttpConnectionMonitor();
10 ~HttpConnectionMonitor();
11
12 bool onNewConnection( Connection *pCon, int nPort );
13 bool onClosedConnection( Connection *pCon );
14};
15
16#endif