blob: 30c0afd4ff37e368b099909b3cce8908185a6805 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#ifndef HTTPCONNECTIONMONITOR_H
#define HTTPCONNECTIONMONITOR_H
#include "connectionmonitor.h"
class HttpConnectionMonitor : public ConnectionMonitor
{
public:
HttpConnectionMonitor();
~HttpConnectionMonitor();
bool onNewConnection( Connection *pCon, int nPort );
bool onClosedConnection( Connection *pCon );
};
#endif
|