Functions
prefix_route()
This function tries to find a route from the user part of the request URI.
If a route is found, it will be used for further processing. Otherwise the
function will return false.
prefix_route() usage
...
if (!prefix_route()) {
xlog("L_ERR", "prefix_route(): no matching routes\n");
}
...