| 127 | }; |
| 128 | |
| 129 | struct HTTPPathHandler |
| 130 | { |
| 131 | HTTPPathHandler() {} |
| 132 | HTTPPathHandler(std::string _prefix, bool _exactMatch, HTTPRequestHandler _handler): |
| 133 | prefix(_prefix), exactMatch(_exactMatch), handler(_handler) |
| 134 | { |
| 135 | } |
| 136 | std::string prefix; |
| 137 | bool exactMatch; |
| 138 | HTTPRequestHandler handler; |
| 139 | }; |
| 140 | |
| 141 | /** HTTP module state */ |
| 142 |
no outgoing calls
no test coverage detected