Start timer thread keeping an eye on timed blocking mode changes

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
DL6ER
2023-05-07 08:51:30 +02:00
parent 7f0bd7481e
commit b97d99ae3e
7 changed files with 27 additions and 7 deletions
+4 -1
View File
@@ -164,7 +164,10 @@ int api_handler(struct mg_connection *conn, void *ignored)
}
// Call the API function and get the return code
log_debug(DEBUG_API, "Sending to %s", api_request[i].uri);
log_debug(DEBUG_API, "Processing %s %s in %s",
api.request->request_method,
api.request->local_uri_raw,
api_request[i].uri);
ret = api_request[i].func(&api);
log_debug(DEBUG_API, "Done");
break;