17 lines
273 B
C++
17 lines
273 B
C++
#pragma once
|
|
|
|
#include <seallib/log.h>
|
|
|
|
class ProxyConfigurator
|
|
{
|
|
public:
|
|
ProxyConfigurator();
|
|
~ProxyConfigurator();
|
|
|
|
bool setProxy(const char* ip, unsigned short port);
|
|
bool clearProxy();
|
|
|
|
private:
|
|
seallib::Logger* _log;
|
|
};
|