Add all HTTP methods

This commit is contained in:
Alex Hultman
2018-10-16 23:55:25 +02:00
parent bb77fac1fc
commit 8105c65fa6
3 changed files with 59 additions and 25 deletions
+3 -4
View File
@@ -11,15 +11,14 @@ struct HttpRequest;
template <bool SSL>
struct HttpContextData {
template <bool> friend struct HttpContext;
private:
public:
struct UserData {
struct RouterData {
HttpResponse<SSL> *httpResponse;
HttpRequest *httpRequest;
};
HttpRouter<UserData *> router;
HttpRouter<RouterData> router;
};
}