WLG/utility/tcp_cgi.hpp

24 lines
441 B
C++
Raw Permalink Normal View History

2025-01-23 11:13:58 +08:00
#ifndef TCPCGI_H
#define TCPCGI_H
#include <vector>
#include <string>
#include <boost/asio.hpp>
#include <boost/thread/thread.hpp>
#include <boost/lexical_cast.hpp>
#include <json/json.h>
#include <boost/array.hpp>
#include "common/common_func.hpp"
#include "common/global.hpp"
#include "localserver/local_server.hpp"
class TcpCgi {
public:
TcpCgi();
~TcpCgi();
static void startCgiServer();
};
#endif