| 137 | }; |
| 138 | |
| 139 | struct HTTPPathHandler { |
| 140 | HTTPPathHandler(std::string _prefix, bool _exactMatch, HTTPRequestHandler _handler) |
| 141 | : prefix(_prefix), exactMatch(_exactMatch), handler(_handler) {} |
| 142 | std::string prefix; |
| 143 | bool exactMatch; |
| 144 | HTTPRequestHandler handler; |
| 145 | }; |
| 146 | |
| 147 | /** HTTP module state */ |
| 148 |
no outgoing calls
no test coverage detected