ESP32 HTTPS Server
HTTPSCallbackFunction.hpp
1 #ifndef SRC_HTTPSCALLBACKFUNCTION_HPP_
2 #define SRC_HTTPSCALLBACKFUNCTION_HPP_
3 
4 #include "HTTPRequest.hpp"
5 #include "HTTPResponse.hpp"
6 
7 namespace httpsserver {
11  typedef void (HTTPSCallbackFunction)(HTTPRequest * req, HTTPResponse * res);
12 }
13 
14 #endif /* SRC_HTTPSCALLBACKFUNCTION_HPP_ */
Represents the request stream for an HTTP request.
Definition: HTTPRequest.hpp:22
Represents the response stream of an HTTP request.
Definition: HTTPResponse.hpp:25
void() HTTPSCallbackFunction(HTTPRequest *req, HTTPResponse *res)
A callback function that will be called by the server to handle a request.
Definition: HTTPSCallbackFunction.hpp:11
Definition: ConnectionContext.cpp:3