aboutsummaryrefslogtreecommitdiff
path: root/src/test/httpsrv/httpconnectionmonitor.h
blob: 63f29e4adde69f956047cd28a8796dd3c7aaadda (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 );
	bool onClosedConnection( Connection *pCon );
};

#endif