mirror of
https://github.com/bdrtr/FINGER_DETECT.git
synced 2025-11-08 18:52:47 +00:00
27 lines
387 B
C++
27 lines
387 B
C++
#ifndef FSERVER_H
|
|
#define FSERVER_H
|
|
|
|
#include <WebServer.h>
|
|
|
|
class fServer {
|
|
|
|
|
|
public:
|
|
fServer(int port);
|
|
void Initialize(String subdomain, http_method method);
|
|
void func();
|
|
void listen();
|
|
void selProcess(String message_code);
|
|
void sendReg();
|
|
void sendLog();
|
|
|
|
|
|
private:
|
|
WebServer server;
|
|
char info[1024];
|
|
uint16_t last_id;
|
|
|
|
};
|
|
|
|
|
|
#endif |