Tivadar Alex
Tivadar Alex
We are not using that netopeer2-cli. There is another way to increase the timeout? We tried to increase NC_READ_ACT_TIMEOUT, but in nc_timeouttime_get() function from session.c file some modifications are made...
Hello, I found why we had 0.4 seconds timeout, in nc_read_poll() function from io.c file - for TLS we have a hardcoded value for timeout which is 400 (0.4 seconds)...
So in the latest version there is `ret = nc_poll(&fds, 1, io_timeout);` line 450 in io.c file, but we have something like: `int pollTimeout = 400;` `ret = poll(&fds, 1,...