| 122 | }; |
| 123 | |
| 124 | struct HTTPPathHandler |
| 125 | { |
| 126 | HTTPPathHandler(std::string _prefix, bool _exactMatch, HTTPRequestHandler _handler): |
| 127 | prefix(_prefix), exactMatch(_exactMatch), handler(_handler) |
| 128 | { |
| 129 | } |
| 130 | std::string prefix; |
| 131 | bool exactMatch; |
| 132 | HTTPRequestHandler handler; |
| 133 | }; |
| 134 | |
| 135 | /** HTTP module state */ |
| 136 |
no outgoing calls
no test coverage detected