2025-02-14 01:04:29 +01:00
|
|
|
#ifndef PROXY_TUNNEL_SETTINGS_CPP
|
|
|
|
|
#define PROXY_TUNNEL_SETTINGS_CPP
|
|
|
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
|
#include <memory>
|
|
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
|
|
|
|
|
class PyCodeConfig{
|
|
|
|
|
public:
|
2025-02-16 16:33:34 +01:00
|
|
|
const vector<uint8_t> code;
|
2025-02-14 01:04:29 +01:00
|
|
|
public:
|
2025-02-16 16:33:34 +01:00
|
|
|
PyCodeConfig(vector<uint8_t> pycode): code(pycode){}
|
|
|
|
|
PyCodeConfig(): code(vector<uint8_t>()){}
|
2025-02-14 01:04:29 +01:00
|
|
|
|
|
|
|
|
~PyCodeConfig(){}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
shared_ptr<PyCodeConfig> config;
|
|
|
|
|
|
|
|
|
|
#endif // PROXY_TUNNEL_SETTINGS_CPP
|
|
|
|
|
|