| 1695 | } |
| 1696 | |
| 1697 | static bool route_is_protected(const char *path) { |
| 1698 | return strcmp(path, "/api") == 0 || strncmp(path, "/api/", 5) == 0 || strcmp(path, "/rpc") == 0; |
| 1699 | } |
| 1700 | |
| 1701 | static bool content_type_is_json(const char *content_type) { |
| 1702 | static const char json_type[] = "application/json"; |
no outgoing calls
no test coverage detected