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