This repository has been archived on 2024-10-30. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
esp-firewall/SourceCode/esp-idf/include/network/theWebServer.h
2022-04-10 13:26:52 +02:00

18 lines
404 B
C

#ifndef WEBSERVER_H
#define WEBSERVER_H
#include "esp_system.h"
#include "esp_event.h"
#include "esp_http_server.h"
#include "esp_log.h"
#include "cJSON.h"
#include "stdlib.h"
#include "../common/theGPIO.h"
#include "theFirewall.h"
void custom_json_response(httpd_req_t *req, char *message, char *type);
void custom_request_middleware(httpd_req_t *req);
void setup_web_server(char *serverIp);
#endif