You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
proxysql/include/ProxySQL_RESTAPI_Server.hpp

22 lines
492 B

#ifndef CLASS_PROXYSQL_RESTAPI_SERVER_H
#define CLASS_PROXYSQL_RESTAPI_SERVER_H
#include "proxysql.h"
#include "cpp.h"
#include <string>
#include "httpserver.hpp"
class ProxySQL_RESTAPI_Server {
private:
std::unique_ptr<httpserver::webserver> ws;
int port;
pthread_t thread_id;
std::unique_ptr<httpserver::http_resource> endpoint;
public:
ProxySQL_RESTAPI_Server(int p);
~ProxySQL_RESTAPI_Server();
void init();
void print_version();
};
#endif /* CLASS_PROXYSQL_RESTAPI_SERVER */