feat: add windows proxy configurator

This commit is contained in:
2026-06-19 01:09:11 -03:00
parent bb223e9660
commit 5c9e043ff3
2 changed files with 108 additions and 0 deletions
+16
View File
@@ -0,0 +1,16 @@
#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;
};