ESP32 HTTPS Server: /home/frank/Projekte/esp32/https_server/esp32_https_server/src/ResolvedResource.hpp Source File

1 #ifndef SRC_RESOLVEDRESOURCE_HPP_

2 #define SRC_RESOLVEDRESOURCE_HPP_

3 

4 #include "ResourceNode.hpp"

5 #include "ResourceParameters.hpp"

6 

8 

13 public:

16 

17  void setMatchingNode(HTTPNode * node);

19  bool didMatch();

22 

23 private:

26 };

27 

28 }

29 

30 #endif

Base class for a URL/route-handler in the server.

Definition: HTTPNode.hpp:26

The ResourceParameters provide access to the parameters passed in the URI.

Definition: ResourceParameters.hpp:31

Definition: ConnectionContext.cpp:3

This class represents a resolved resource, meaning the result of mapping a string URL to an HTTPNode...

Definition: ResolvedResource.hpp:12