OnkelDead wrote:
> +const char *route_names[] = {
The strings are const, but the array is not. This should be
static const char * const route_names[] = { ...
There are lots of other static variables that probably can be const.
Regards,
Clemens