mirror of
https://github.com/uroni/urbackup_backend.git
synced 2025-10-26 11:36:50 +00:00
21 lines
536 B
C++
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;
|
|
};
|