CossHttpService.h 539 B

123456789101112131415161718
  1. //
  2. // Created by WJG on 2021-1-18.
  3. //
  4. #ifndef NEWCOSS_HTTPSERVICE_H
  5. #define NEWCOSS_HTTPSERVICE_H
  6. #include "OriginalHttplib.h"
  7. bool startHttpService();
  8. void stopHttpService();
  9. void systemRequest_process(const ORhttplib::Request &req, ORhttplib::Response &res);
  10. void deviceControl(const ORhttplib::Request &req, ORhttplib::Response &res);
  11. void lightjia_process(const ORhttplib::Request &req, ORhttplib::Response &res);
  12. void testuserLogin_process(const ORhttplib::Request &req, ORhttplib::Response &res);
  13. #endif //NEWCOSS_HTTPSERVICE_H