urbackup_backend/httpserver/HTTPService.h
2011-01-06 17:43:38 +01:00

21 lines
536 B
C++

#include "../Interface/Service.h"
class CHTTPService : public IService
{
public:
CHTTPService(std::string pRoot, std::string pProxy_server, int pProxy_port, int pShare_proxy_connections);
virtual ICustomClient* createClient();
virtual void destroyClient( ICustomClient * pClient);
std::string getRoot(void);
std::string getProxyServer(void);
int getProxyPort(void);
int getShareProxyConnections(void);
private:
std::string root;
std::string proxy_server;
int proxy_port;
int share_proxy_connections;
};