I keep getting “httpd_uri: httpd_register_uri_handler: no slots left for registering handler” even for the first handler I thought I registered. Is there any way to find out what’s been registered by calling a function? Can someone point to the library code ...Read more
I keep getting “httpd_uri: httpd_register_uri_handler: no slots left for registering handler” even for the first handler I thought I registered.
Is there any way to find out what’s been registered by calling a function? Can someone point to the library code that handles this so I can add or turn on debug info?
Read less
The solution can be seeing below: CODE: SELECT ALL esp_err_t init_webservice(char * base_path, httpd_handle_t * auxserver, rest_server_context_t * auxrest_context) { ... httpd_handle_t server = NULL; httpd_config_t config = HTTPD_DEFAULT_CONFIG(); config.max_uri_handlers = 10; config.uri_match_fn =Read more
The solution can be seeing below:
CODE: SELECT ALL