dlt-daemon
dlt-daemon copied to clipboard
Diagnostic Log and Trace.
My service is divided into multiple classes and instead of defining all contexts in main and import them in deafferent classes, I declare the context in class and register it...
Is it possible to compile this with windows and create a dll instead of so file.
Hi 1. Is there a way to install and use latest version of dlt-receive on windows. 2. Is there any alternative for windows if dlt-receive can't be used on windows....
If dlt-daemon is configured to log to file, the log file will grow unlimited because it is always appended.
I have compiled latest version of daemon for windows (https://github.com/COVESA/dlt-daemon/issues/136) and while specifying port information dlt-receive -a hostname -p port I am facing this error `[ 1458.019349]~DLT~ 26~ERROR ~dlt_client_connect: getaddrinfo:...
I want to port the whole system of dlt to qnx operating system, how can I do it? And ensure that daemon can be used, thank you
char buffer[512] = {0}; size_t size = 0; int32_t args_num = 0; type_info = DLT_TYPE_INFO_STRG | DLT_SCOD_ASCII; memcpy(buffer + size, &(type_info), sizeof(uint32_t)); size += sizeof(uint32_t); memcpy(buffer + size, "test11", sizeof("test11"));...
This timeout is necessary to prevent blocking writev indefinitely. Without the timeout dlt-daemon, may block indefinitely when an app id is re-used very frequently. In that case dlt-daemon won't accept...
This commit fixes the following issues if access to the internal log file is not possible (logging_mode = DLT_LOG_TO_FILE) * dlt_log_free tried to call fclose on a nullptr Added a...
* dlt-gateway crashed when an invalid ip address was configured as a null pointer was used for strdup * Add timeout for dlt-client-connect. Timeout is hard coded to 1 seconds...